public ShopCartController(IProductService productService, IOrderProcessorService orderService, ISalesTerritoryService salesService, IShopCartItemService shopCartItemService, ICustomerAddressService addressService) { this.productService = productService; this.orderService = orderService; this.salesService = salesService; this.shopCartItemService = shopCartItemService; this.addressService = addressService; }
public EmployeeController(IOrderDisplayService orderDisplay, IXMLService xmlRepo, IOrderProcessorService orderProcessor) { this.orderDisplay = orderDisplay; this.xmlRepo = xmlRepo; this.orderProcessor = orderProcessor; }
public HomeController(IOrderProcessorService serviceProcessor, IHubContext <OrderHub> orderHub) { _serviceProcessor = serviceProcessor; this.orderHub = orderHub; }
public OrderProcessorSVC(IOrderProcessorService orderPrServ) { orderProcessorService = orderPrServ; }