Esempio n. 1
0
 public RegionImportService(IRegionService regionService, IUserService userService, Interface.IImportFileService importFileService,
                            IExportCSVService exportCsvService)
 {
     _importFileService = importFileService;
     _regionService     = regionService;
     _userService       = userService;
     _exportCsvService  = exportCsvService;
 }
Esempio n. 2
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;
 }