public DishesController(IDishesService dishesService,
                         IBusinessInfoService businessService, IBaseImageService baseImgInfoService,
                         IDishesCategoryService dishesCategoryoService)
 {
     _dishesService          = dishesService;
     _businessService        = businessService;
     _baseImgInfoService     = baseImgInfoService;
     _dishesCategoryoService = dishesCategoryoService;
 }
 public DishesCategoryController(IDishesCategoryService dishesCategoryService)
 {
     _dishesCategoryService = dishesCategoryService;
 }