Example #1
0
 public MainWindowViewModel(ICustomerInfoQueries customerInfoQueries)
 {
     this.customerInfoQueries = customerInfoQueries;
     Customers = new AsyncProperty <List <CustomerInfo> >(LoadCustomerInfos);
 }
 public CustomerInfoController(ICustomerInfoQueries customerInfoQueriesImplementation)
 {
     this.customerInfoQueriesImplementation = customerInfoQueriesImplementation;
 }