Пример #1
0
 public CustomerModuleController(IContactService contactService, IOrganizationService organizationService, ICustomerSearchService contactSearchService, ISecurityService securityService)
 {
     _contactSearchService = contactSearchService;
     _securityService      = securityService;
     _organizationService  = organizationService;
     _contactService       = contactService;
 }
 public CustomerController(ICustomerSearchService customerSearchService,
                           ICustomerPropertyService customerPropertyService,
                           ICustomerService customerService,
                           IExcelDataHaveColumnExporter dataExporter)
 {
     _customerSearchService   = customerSearchService;
     _customerService         = customerService;
     _customerPropertyService = customerPropertyService;
     _dataExporter            = dataExporter;
 }
Пример #3
0
 public DeliveryNoteController(IDeliveryNoteService noteService,
                               IDeliveryNoteSearchService noteSearchService,
                               ICustomerSearchService customerSearchService,
                               IDeliveryNoteCategoryService noteCategoryService,
                               IDeliveryNoteWrapper[] noteWrappers,
                               IDeliveryNoteItemWrapper[] itemWrappers)
 {
     _noteService           = noteService;
     _noteSearchService     = noteSearchService;
     _noteCategoryService   = noteCategoryService;
     _customerSearchService = customerSearchService;
     _noteWrappers          = noteWrappers;
     _itemWrappers          = itemWrappers;
 }
 public OrderController(IOrderService orderService,
                        IOrderSearchService orderSearchService,
                        IOrderWrapper[] orderWrappers,
                        IGoodsSearchService goodsSearchService,
                        ICustomerSearchService customerSearchService,
                        IOrderCategorySearchService orderCategorySearchService
                        )
 {
     _orderService               = orderService;
     _orderSearchService         = orderSearchService;
     _orderWrappers              = orderWrappers;
     _goodsSearchService         = goodsSearchService;
     _customerSearchService      = customerSearchService;
     _orderCategorySearchService = orderCategorySearchService;
 }
 public CustomerFinanceController(ICustomerFinanceService financeService,
                                  ICustomerFinanceSearchService financeSearchService,
                                  ICustomerFinanceCategoryService financeCategoryService,
                                  ICustomerSearchService customerSearchService,
                                  ICustomerFinanceWrapper[] financeWrappers,
                                  ICustomerFinancePropertySearchService propertySearchService,
                                  IExcelDataHaveColumnExporter dataExporter)
 {
     _financeService         = financeService;
     _financeSearchService   = financeSearchService;
     _financeCategoryService = financeCategoryService;
     _customerSearchService  = customerSearchService;
     _financeWrappers        = financeWrappers;
     _propertySearchService  = propertySearchService;
     _dataExporter           = dataExporter;
 }
 public CustomerExportImport(IContactService contactService, IOrganizationService organizationService, ICustomerSearchService customerSearchService)
 {
     _contactService = contactService;
     _organizationService = organizationService;
     _customerSearchService = customerSearchService;
 }
Пример #7
0
 public CustomerExportImport(IContactService contactService, IOrganizationService organizationService, ICustomerSearchService customerSearchService)
 {
     _contactService        = contactService;
     _organizationService   = organizationService;
     _customerSearchService = customerSearchService;
 }
		public CustomerModuleController(IContactService contactService, IOrganizationService organizationService, ICustomerSearchService contactSearchService)
		{
			_contactSearchService = contactSearchService;
			_organizationService = organizationService;
			_contactService = contactService;
		}
Пример #9
0
 public DeliveryNoteCustomerWrapper(ICustomerSearchService customerSearchService)
 {
     _customerSearchService = customerSearchService;
 }
Пример #10
0
 public CustomerSearchApplication(IConsoleWriter consoleWriter, ICustomerSearchService service)
 {
     _consoleWriter = consoleWriter;
     _service       = service;
 }
Пример #11
0
 public CustomerController(ICustomerSearchService customerSearchService)
 {
     _customerSearchService = customerSearchService;
 }
 public CustomerFinanceCustomerWrapper(ICustomerSearchService customerSearchService)
 {
     _customerSearchService = customerSearchService;
 }
 public OrderCustomerWrapper(ICustomerSearchService customerSearchService)
 {
     _customerSearchService = customerSearchService;
 }
Пример #14
0
 public ContactsProvider(ICustomerSearchService customerSearchService, IContactService contactService)
 {
     _customerSearchService = customerSearchService;
     _contactService        = contactService;
 }
Пример #15
0
 public ContactsProvider(ICustomerSearchService customerSearchService, IContactService contactService)
 {
     _customerSearchService = customerSearchService;
     _contactService = contactService;
 }