Esempio n. 1
0
        public GuaranteeViewModel(CustomersDataService customerService, GuaranteeDataService guaranteeDataService)
        {
            _customerService      = customerService;
            _guaranteeDataService = guaranteeDataService;

            ShowExpired = App.CheckBoxesStates.GuaranteeHide;


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