public ResourceAttributeController(IResourceService resourceService, INaicsService naicsService, IPscService pscService, ICountryService countryService, IStateService statesService, ICustomerService customerService, ICustomerContactService customerContactService, IContractsService contractService, IUserService userService, ICompanyService companyService, IRegionService regionService, IResourceAttributeValueService resourceAttributeValueService) { _resourceService = resourceService; _naicsService = naicsService; _pscService = pscService; _countryService = countryService; _statesService = statesService; _customerService = customerService; _customerContactService = customerContactService; _contractService = contractService; _userService = userService; _resourceAttributeValueService = resourceAttributeValueService; _companyService = companyService; _regionService = regionService; }
public CustomersController(ICustomerService customerService, ICustomerContactService customerContactService, IContactCustomerService contactCustomerService) { _customerService = customerService; _customerContactService = customerContactService; _contactCustomerService = contactCustomerService; }
public CustomerController(CenDekContext dbContext, ICustomerService customerService, ICustomerContactService customerContactService, ICustomerCarrierService customerCarrierService, IShippingAddressService shippingAddressService) { _dbContext = dbContext; _customerService = customerService; _customerContactService = customerContactService; _customerCarrierService = customerCarrierService; _shippingAddressService = shippingAddressService; }
public VippsLoginCommerceService( IVippsLoginService vippsLoginService, IVippsLoginMapper vippsLoginMapper, IVippsLoginDataLoader vippsLoginDataLoader, ICustomerContactService customerContactService) { _vippsLoginService = vippsLoginService; _vippsLoginMapper = vippsLoginMapper; _vippsLoginDataLoader = vippsLoginDataLoader; _customerContactService = customerContactService; }
public CustomerContactController( ICustomerContactService customerContactService, ICustomerService customerService, ICustomerContactTypeService customerContactTypeService, IConfiguration configuration) { _customerContactService = customerContactService; _customerService = customerService; _customerContactTypeService = customerContactTypeService; _configuration = configuration; }
//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 CustomerContactOrchestra(ICustomerContactService customerContactService, ICustomerContactDepartmentService customerContactDepartmentService, ICustomerContactLocationService customerContactLocationService, ICustomerLocationService customerLocationService, ICustomerDepartmentService customerDepartmentService, ISetupLocalService setupLocalService, IContactService contactService, INoteService noteService) { _customerContactService = customerContactService; _customerContactLocationService = customerContactLocationService; _customerContactDepartmentService = customerContactDepartmentService; _customerLocationService = customerLocationService; _customerDepartmentService = customerDepartmentService; var setting = setupLocalService.Find("ServerCode"); _serverCode = setting != null ? setting.SetupValueNvarchar : "L"; _contactService = contactService; _noteService = noteService; }