public SellingOrderController(ISellingOrderService sellingOrderService,
                               IProductService productService,
                               IEmployeeService employeeService,
                               ICustomerService customerService)
 {
     this.sellingOrderService = sellingOrderService;
     this.employeeService     = employeeService;
     this.customerService     = customerService;
     this.productService      = productService;
 }
 public SellingOrderController(ISellingOrderService orderService)
 {
     _orderService = orderService;
 }
Exemple #3
0
 public RevenueStatisticsController(ISellingOrderService sellingOrderService)
 {
     this.sellingOrderService = sellingOrderService;
 }