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;
 }
Exemple #2
0
 public CustomersController(ICustomerService customerService, ICustomerContactService customerContactService,
                            IContactCustomerService contactCustomerService)
 {
     _customerService        = customerService;
     _customerContactService = customerContactService;
     _contactCustomerService = contactCustomerService;
 }
Exemple #3
0
 public CustomerController(CenDekContext dbContext, ICustomerService customerService, ICustomerContactService customerContactService, ICustomerCarrierService customerCarrierService, IShippingAddressService shippingAddressService)
 {
     _dbContext              = dbContext;
     _customerService        = customerService;
     _customerContactService = customerContactService;
     _customerCarrierService = customerCarrierService;
     _shippingAddressService = shippingAddressService;
 }
Exemple #4
0
 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;
 }
Exemple #6
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 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;
        }