Ejemplo n.º 1
0
 public OrderController(IOrderAppService orderAppService,
                         ITableServiceAppService tableServiceAppService,
                         IDishAppService dishAppService,
                         IOptionAppService optionAppService,
                         ICategoryAppService categoryAppService)
 {
     this.orderAppService = orderAppService;
     this.tableServiceAppService = tableServiceAppService;
     this.dishAppService = dishAppService;
     this.optionAppService = optionAppService;
     this.categoryAppService = categoryAppService;
 }
Ejemplo n.º 2
0
 public OptionController(IOptionAppService optionAppService, ICategoryAppService categoryAppService)
 {
     this.optionAppService = optionAppService;
     this.categoryAppService = categoryAppService;
 }