public CustomerController(ICustomerSearchService customerSearchService,
                           ICustomerPropertyService customerPropertyService,
                           ICustomerService customerService,
                           IExcelDataHaveColumnExporter dataExporter)
 {
     _customerSearchService   = customerSearchService;
     _customerService         = customerService;
     _customerPropertyService = customerPropertyService;
     _dataExporter            = dataExporter;
 }
Example #2
0
 public CustomerPropertyController(ICustomerPropertyService customerPropertyService)
 {
     _customerPropertyService = customerPropertyService;
 }
 public CustomerPropertyController(ICustomerPropertyService customerPropertyService,
                                   IPropertyTypeProvider propertyTypeProvider)
 {
     _customerPropertyService = customerPropertyService;
     _propertyTypeProvider    = propertyTypeProvider;
 }