コード例 #1
0
 public SellerController(ISellerService sellerService, IOrderTableService orderTableService, ISalesTableService salesTableService, ISellerTargetService sellerTargetService)
 {
     _sellerService       = sellerService;
     _orderTableService   = orderTableService;
     _salesTableService   = salesTableService;
     _sellerTargetService = sellerTargetService;
 }
コード例 #2
0
 public OrderSalesJobManager(IOrderTableService orderTableService, ISalesTableService salesTableService)
 {
     _orderTableService = orderTableService;
     _salesTableService = salesTableService;
 }
コード例 #3
0
 public ReservationController(IOrderTableService restaurantService)
 {
     _ordertableservice = restaurantService;
 }