public CustomerController(IBranchBusinessService branchService, ICustomerBusinessService customerService,
                           ICustomerTypeBusinessService customerTypeService, ICustomerExchangeBusinessService customerExchangeService)
 {
     _branchService           = branchService;
     _customerService         = customerService;
     _customerTypeService     = customerTypeService;
     _customerExchangeService = customerExchangeService;
 }
Пример #2
0
        public QuotationController(IAccessaryBusinessService accessaryService, IAccessaryUnitBusinessService accessaryUnitService, IServiceBusinessService publicService,
                                   IServiceUnitBusinessService publicServiceUnit, IQuotationBusinessService quotationService, ICarBusinessService carService,
                                   ICustomerBusinessService customerService, ICustomerExchangeBusinessService customerExchangeService, IBranchBusinessService branchService,
                                   ICustomerTypeBusinessService customerTypeService)
        {
            _serviceBuilder = new ServiceBuilder();
            _serviceBuilder.BuildAccessaryService(accessaryService);
            _serviceBuilder.BuildAccessaryUnitService(accessaryUnitService);
            _serviceBuilder.BuildPublicService(publicService);
            _serviceBuilder.BuildServiceUnitService(publicServiceUnit);
            _serviceBuilder.BuildQuotationService(quotationService);
            _serviceBuilder.BuildCarService(carService);
            _serviceBuilder.BuildCustomerService(customerService);
            _serviceBuilder.BuildCustomerExchangeService(customerExchangeService);
            _serviceBuilder.BuildBranchService(branchService);
            _serviceBuilder.BuildCustomerTypeService(customerTypeService);

            _serviceParameter = _serviceBuilder.Parameter;
        }
Пример #3
0
 public void BuildCustomerTypeService(ICustomerTypeBusinessService customerTypeService)
 {
     _parameter.CustomerTypeService = customerTypeService;
 }
 public CustomerTypeController(ICustomerTypeBusinessService customerTypeService)
 {
     _serviceBuilder = new ServiceBuilder();
     _serviceBuilder.BuildCustomerTypeService(customerTypeService);
 }