/*private readonly IUriService _uriService;*/

        public RestaurantCategoryController(IRestaurantCategoryService restaurantCategoryService, IMapper mapper)
        {
            _restaurantCategoryService = restaurantCategoryService;
            _mapper = mapper;
            /*_uriService = uriService;*/
        }
 public RestaurantCategoriesController(IMapper mapper,
                                       IRestaurantCategoryService restaurantCategoryService)
 {
     this.mapper = mapper;
     this.restaurantCategoryService = restaurantCategoryService;
 }