예제 #1
0
 public RegionImportService(IRegionService regionService, IUserService userService, Interface.IImportFileService importFileService,
                            IExportCSVService exportCsvService)
 {
     _importFileService = importFileService;
     _regionService     = regionService;
     _userService       = userService;
     _exportCsvService  = exportCsvService;
 }
예제 #2
0
 public ModImportService(IContractModificationService contractModificationService, IImportFileService importFileService,
                         IExportCSVService exportCSVService, IContractsService contractsService)
 {
     _contractModificationService = contractModificationService;
     _importFileService           = importFileService;
     _exportCsvService            = exportCSVService;
     _contractsService            = contractsService;
 }
예제 #3
0
        //private string copyFileName = "Company_Original";

        public CompanyImportService(IImportFileService fileReaderService, IExportCSVService exportCsvService, ICompanyService companyService,
                                    IUserService userService, IImportFileService importFileService)
        {
            _fileReaderService = fileReaderService;
            _exportCsvService  = exportCsvService;
            _companyService    = companyService;
            _userService       = userService;
            _importFileService = importFileService;
        }
예제 #4
0
 public OfficeImportService(IOfficeService officeService, IUserService userService, IImportFileService importFileService,
                            ICountryService countryService, IStateService stateService, IExportCSVService exportCsvService)
 {
     _importFileService = importFileService;
     _officeService     = officeService;
     _userService       = userService;
     _exportCsvService  = exportCsvService;
     _countryService    = countryService;
     _stateService      = stateService;
 }
예제 #5
0
        //private string copyFileName = "CustomerContact_Original";

        public CustomerContactImportService(IImportFileService fileReaderService, IExportCSVService exportCsvService,
                                            ICustomerContactService customerContactService, IUserService userService, IImportFileService importFileService,
                                            ICustomerService customerService, ICustomerContactTypeService customerContactTypeService)
        {
            _fileReaderService          = fileReaderService;
            _exportCsvService           = exportCsvService;
            _customerContactService     = customerContactService;
            _userService                = userService;
            _importFileService          = importFileService;
            _customerService            = customerService;
            _customerContactTypeService = customerContactTypeService;
        }
 public FarClauseImportService(IImportFileService importFileService, IExportCSVService exportCSVService,
                               IContractsService contractsService, IFarContractService farContractService, IFarContractTypeService farContractTypeService,
                               IFarContractTypeClauseService farContractTypeClauseService, IFarClauseService farClauseService, IQuestionaireMasterService questionaireMasterService,
                               IQuestionaireUserAnswerService questionaireUserAnswerService)
 {
     _importFileService             = importFileService;
     _exportCsvService              = exportCSVService;
     _contractsService              = contractsService;
     _farContractService            = farContractService;
     _farContractTypeService        = farContractTypeService;
     _farContractTypeClauseService  = farContractTypeClauseService;
     _farClauseService              = farClauseService;
     _questionaireMasterService     = questionaireMasterService;
     _questionaireUserAnswerService = questionaireUserAnswerService;
 }
예제 #7
0
 public ImportService(IRegionImportService regionImportService, ICompanyImportService companyImportService,
                      ICustomerContactImportService customerContactImportService, ICustomerImportService customerImportService,
                      IOfficeImportService officeImportService, IModImportService modImportService, IContractImportService contractImportService,
                      IAttachmentImportService attachmentImportService, IFarClauseImportService farClauseImportService,
                      IExportCSVService exportCSVService)
 {
     _regionImportService          = regionImportService;
     _companyImportService         = companyImportService;
     _customerContactImportService = customerContactImportService;
     _customerImportService        = customerImportService;
     _officeImportService          = officeImportService;
     _modImportService             = modImportService;
     _contractImportService        = contractImportService;
     _attachmentImportService      = attachmentImportService;
     _farClauseImportService       = farClauseImportService;
     _exportCSVService             = exportCSVService;
 }
예제 #8
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;
 }
예제 #9
0
 public ImportFileService(IExportCSVService exportCSVService)
 {
     _exportCSVService = exportCSVService;
 }