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

            ShowExpired = App.CheckBoxesStates.GuaranteeHide;


            Task.Run(async() => await LoadGuaranties());
        }
Example #2
0
 public GuaranteeViewModelFactory(CustomersDataService customerService, GuaranteeDataService guaranteeDataService)
 {
     _customerService      = customerService;
     _guaranteeDataService = guaranteeDataService;
 }