public double GetAverageRating(string locationId)
 {
     _locationCtrl = new LocationCtrl();
     int.TryParse(locationId, out int locId);
     return(_locationCtrl.GetAverageRating(locId));
 }