如何将我的 CustomerRepository 注入到我的 CustomerVM 视图模型中?在我看来,我有一个 WPF 页面:
<Page.DataContext> <viewModel:CustomerVM/> </Page.DataContext>
但是我的视图模型构造函数显然传入了参数,
public CustomerVM(ICustomerRepository customerRepository) { //this._customerRepository = customerRepository; }
我明白了
类型“CustomerVM”不能用作对象元素,因为它不是公共的或未定义公共无参数构造函数或类型转换器。
真的很挣扎。
任何帮助表示赞赏。