コード例 #1
0
 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;
 }
コード例 #2
0
 public EmployeeController(IOrderDisplayService orderDisplay, IXMLService xmlRepo, IOrderProcessorService orderProcessor)
 {
     this.orderDisplay   = orderDisplay;
     this.xmlRepo        = xmlRepo;
     this.orderProcessor = orderProcessor;
 }
コード例 #3
0
 public HomeController(IOrderProcessorService serviceProcessor, IHubContext <OrderHub> orderHub)
 {
     _serviceProcessor = serviceProcessor;
     this.orderHub     = orderHub;
 }
コード例 #4
0
 public OrderProcessorSVC(IOrderProcessorService orderPrServ)
 {
     orderProcessorService = orderPrServ;
 }