예제 #1
0
 public CustomerNotesController(
     IQuartetClientFactory clientFactory,
     IConsultantContext consultantContext,
     IMappingService<Customer, CustomerDetailViewModel> customerMappingService,
     IImportCustomerService importCustomer
 )
 {
     _clientFactory          = clientFactory;
     _consultantContext      = consultantContext;
     _customerMappingService = customerMappingService;
     _importCustomer         = importCustomer;
 }
예제 #2
0
 public CustomersController(
     IMappingService<Customer, CustomerDetailViewModel> customerDetailMappingService,
     IAppSettings appSettings,
     IQuartetClientFactory clientFactory,
     IConsultantContext consultantContext,
     ICustomerExportService customerListService,
     IImportCustomerService importCustomer,
     IConfigService configService,
     IVMOLinkComposer vmoLinkComposer,
     IFeaturesConfigService featuresConfigService,
     IETLinkComposer etLinkComposer
 )
 {
     _appSettings                  = appSettings;
     _clientFactory                = clientFactory;
     _consultantContext            = consultantContext;
     _customerDetailMappingService = customerDetailMappingService;
     _customerListService          = customerListService;
     _importCustomer               = importCustomer;
     _configService                = configService;
     _vmoLinkComposer              = vmoLinkComposer;
     _featuresConfigService        = featuresConfigService;
     _etLinkComposer               = etLinkComposer;
 }
예제 #3
0
 public SubscriptionsController(
     IImportCustomerService importCustomer
 )
 {
     _importCustomer = importCustomer;
 }