public RestaurantRatingBL(
     IRestaurantRatingRepository restaurantRatingRepository,
     IUnitOfWork unitOfWork)
 {
     this._restaurantRatingRepository = restaurantRatingRepository;
     this._unitOfWork = unitOfWork;
 }
 public RestaurantRatingLogic(IRestaurantRatingRepository restaurantRatingRepository, IUserLogic userLogic)
 {
     _restaurantRatingRepository = restaurantRatingRepository;
     _userLogic = userLogic;
 }