从MVC App中的WPF App执行一个方法

时间:2016-05-04 13:52:06

标签: c# asp.net-mvc wpf

我正在尝试从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());   
        }

0 个答案:

没有答案