public UsCustomerOfficeListController(
     IUsCustomerOfficeListService usCustomerOfficeListService,
     IConfiguration configuration)
 {
     _configuration = configuration;
     _usCustomerOfficeListService = usCustomerOfficeListService;
 }
예제 #2
0
 public CustomerController(ICustomerService customerService,
                           ICommonService commonService,
                           IUsCustomerOfficeListService usCustomerOfficeListService,
                           ICountryService countryService,
                           ICustomerTypeService customerTypeService,
                           IStateRepository stateRepository,
                           IConfiguration configuration)
 {
     _customerService             = customerService;
     _commonService               = commonService;
     _configuration               = configuration;
     _usCustomerOfficeListService = usCustomerOfficeListService;
     _countryService              = countryService;
     _stateRepository             = stateRepository;
     _customerTypeService         = customerTypeService;
     _logger = LogManager.GetCurrentClassLogger();
 }
예제 #3
0
 public CustomerImportService(ICustomerService CustomerService,
                              IUserService userService,
                              IImportFileService importFileService,
                              IExportCSVService exportCsvService,
                              IUsCustomerOfficeListService usCustomerOfficeListService,
                              IStateService stateService,
                              ICountryService countryService,
                              ICustomerTypeService customerTypeService)
 {
     _importFileService           = importFileService;
     _customerService             = CustomerService;
     _userService                 = userService;
     _stateService                = stateService;
     _usCustomerOfficeListService = usCustomerOfficeListService;
     _countryService              = countryService;
     _exportCsvService            = exportCsvService;
     _customerTypeService         = customerTypeService;
 }