public OrderContentController(
     IOrderService OrderService,
     IOrderContentService OrderContentService,
     ICurrentContext CurrentContext
     )
 {
     this.OrderService        = OrderService;
     this.OrderContentService = OrderContentService;
     this.CurrentContext      = CurrentContext;
 }
示例#2
0
        public OrderContentDetailController(

            IItemService ItemService,
            IOrderService OrderService,
            IOrderContentService OrderContentService
            )
        {
            this.ItemService         = ItemService;
            this.OrderService        = OrderService;
            this.OrderContentService = OrderContentService;
        }
示例#3
0
 public FoodController(
     IAccountService AccountService,
     IFoodService FoodService,
     IOrderService OrderService,
     IOrderContentService OrderContentService,
     ICurrentContext CurrentContext
     )
 {
     this.AccountService      = AccountService;
     this.FoodService         = FoodService;
     this.OrderService        = OrderService;
     this.OrderContentService = OrderContentService;
     this.CurrentContext      = CurrentContext;
 }