Exemple #1
0
        public GuaranteeViewModel(CustomersDataService customerService, GuaranteeDataService guaranteeDataService)
        {
            _customerService      = customerService;
            _guaranteeDataService = guaranteeDataService;

            ShowExpired = App.CheckBoxesStates.GuaranteeHide;


            Task.Run(async() => await LoadGuaranties());
        }
Exemple #2
0
 public ServiceViewModelFactory(ServiceItemsDataService serviceItemService, CustomersDataService customerServiceDataService)
 {
     _serviceItemService         = serviceItemService;
     _customerServiceDataService = customerServiceDataService;
 }
Exemple #3
0
 public CustomerViewModelFactory(CustomersDataService customerService, ServiceItemsDataService serviceItemsDataService)
 {
     _customerService         = customerService;
     _serviceItemsDataService = serviceItemsDataService;
 }
Exemple #4
0
 public GuaranteeViewModelFactory(CustomersDataService customerService, GuaranteeDataService guaranteeDataService)
 {
     _customerService      = customerService;
     _guaranteeDataService = guaranteeDataService;
 }