public ImportingOrderController(IImportingOrderService importingOrderService, IVendorService vendorService, IEmployeeService employeeService, IProductService productService)
 {
     this.importingOrderService = importingOrderService;
     this.vendorService         = vendorService;
     this.employeeService       = employeeService;
     this.productService        = productService;
 }
 public ImportingOrderController(IImportingOrderService orderService)
 {
     _orderService = orderService;
 }