public DishesController(IDishesService dishesService,
                         IBusinessInfoService businessService, IBaseImageService baseImgInfoService,
                         IDishesCategoryService dishesCategoryoService)
 {
     _dishesService          = dishesService;
     _businessService        = businessService;
     _baseImgInfoService     = baseImgInfoService;
     _dishesCategoryoService = dishesCategoryoService;
 }
 public DishesLabelController(IDishesService dishesService,
                              IBusinessInfoService businessService, IBaseImageService baseImgInfoService,
                              IDishesLableService dishesLabelService, IDishesRelateLableService dishesRelateLabelService)
 {
     _dishesService            = dishesService;
     _businessService          = businessService;
     _baseImgInfoService       = baseImgInfoService;
     _dishesLabelService       = dishesLabelService;
     _dishesRelateLabelService = dishesRelateLabelService;
 }
예제 #3
0
 public DishesController(IDishesService newDishesService)
 {
     dishesService = newDishesService;
 }
 public DishController(IDishesService dishes, IProductsService products)
 {
     this.dishes = dishes;
     this.products = products;
 }
 public ManageController(IProductsService products, ITrainingsService trainings, IDishesService dishes)
 {
     this.products = products;
     this.trainings = trainings;
     this.dishes = dishes;
 }
예제 #6
0
 public DishesController(IDishesService dishesService)
 {
     _dishesService = dishesService;
 }
예제 #7
0
 public DishesController(IDishesService service)
 {
     _service = service;
 }
 public TrainingController(ITrainingsService trainings, IUsersService users, IDishesService dishes)
 {
     this.trainings = trainings;
     this.users = users;
     this.dishes = dishes;
 }