Ejemplo n.º 1
0
 public DocumentViewModelService(
     IDocumentService documentService,
     IDocumentTypeService documentTypeService,
     ICustomerService customerService,
     IOrderService orderService,
     ILocalizationService localizationService,
     IProductService productService,
     IShipmentService shipmentService,
     IReturnRequestService returnRequestService,
     ICategoryService categoryService,
     IManufacturerService manufacturerService,
     IVendorService vendorService,
     ISalesEmployeeService salesEmployeeService
     )
 {
     _documentService      = documentService;
     _documentTypeService  = documentTypeService;
     _customerService      = customerService;
     _orderService         = orderService;
     _localizationService  = localizationService;
     _productService       = productService;
     _shipmentService      = shipmentService;
     _returnRequestService = returnRequestService;
     _categoryService      = categoryService;
     _manufacturerService  = manufacturerService;
     _vendorService        = vendorService;
     _salesEmployeeService = salesEmployeeService;
 }
 public DocumentViewModelService(
     IDocumentService documentService,
     IDocumentTypeService documentTypeService,
     ICustomerService customerService,
     IOrderService orderService,
     ITranslationService translationService,
     IProductService productService,
     IShipmentService shipmentService,
     IMerchandiseReturnService merchandiseReturnService,
     ICategoryService categoryService,
     ICollectionService collectionService,
     IVendorService vendorService,
     ISalesEmployeeService salesEmployeeService
     )
 {
     _documentService          = documentService;
     _documentTypeService      = documentTypeService;
     _customerService          = customerService;
     _orderService             = orderService;
     _translationService       = translationService;
     _productService           = productService;
     _shipmentService          = shipmentService;
     _merchandiseReturnService = merchandiseReturnService;
     _categoryService          = categoryService;
     _collectionService        = collectionService;
     _vendorService            = vendorService;
     _salesEmployeeService     = salesEmployeeService;
 }
 public SalesEmployeeController(
     ISalesEmployeeService salesEmployeeService,
     ICustomerService customerService,
     IOrderService orderService,
     ICustomerActivityService customerActivityService,
     ILocalizationService localizationService)
 {
     _salesEmployeeService    = salesEmployeeService;
     _customerService         = customerService;
     _orderService            = orderService;
     _customerActivityService = customerActivityService;
     _localizationService     = localizationService;
 }
Ejemplo n.º 4
0
 public SalesEmployeeController(
     ISalesEmployeeService salesEmployeeService,
     ICustomerService customerService,
     IOrderService orderService,
     IDocumentService documentService,
     ICustomerActivityService customerActivityService,
     ITranslationService translationService)
 {
     _salesEmployeeService    = salesEmployeeService;
     _customerService         = customerService;
     _orderService            = orderService;
     _documentService         = documentService;
     _customerActivityService = customerActivityService;
     _translationService      = translationService;
 }
 public SalesEmployeeController(
     ISalesEmployeeService salesEmployeeService)
 {
     _salesEmployeeService = salesEmployeeService;
 }