我正在尝试从WPF应用程序执行一个方法,该方法已在我的新MVC应用程序中添加为参考,但我在控制器中得到NullReferenceException。
private ClientCustomerList GetCustomerList()
{
QTSysGlobal.LogicAssemblyAPI.Production.GetCustomers(ref customerList, 200, out ViewError); //Here Occurs the Exception
if (ViewError)
{
view.Dispatcher.Invoke(QTSysGlobal.ErrorDelegate, null);
return null;
}
return customerList;
}
public ActionResult customer()
{
return View(GetCustomerList());
}