public GuaranteeViewModel(CustomersDataService customerService, GuaranteeDataService guaranteeDataService) { _customerService = customerService; _guaranteeDataService = guaranteeDataService; ShowExpired = App.CheckBoxesStates.GuaranteeHide; Task.Run(async() => await LoadGuaranties()); }
public ServiceViewModelFactory(ServiceItemsDataService serviceItemService, CustomersDataService customerServiceDataService) { _serviceItemService = serviceItemService; _customerServiceDataService = customerServiceDataService; }
public CustomerViewModelFactory(CustomersDataService customerService, ServiceItemsDataService serviceItemsDataService) { _customerService = customerService; _serviceItemsDataService = serviceItemsDataService; }
public GuaranteeViewModelFactory(CustomersDataService customerService, GuaranteeDataService guaranteeDataService) { _customerService = customerService; _guaranteeDataService = guaranteeDataService; }