示例#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;
 }