// GET /api/hotel?regionId=1
 public List <Hotel> GetByRegion(int regionId)
 {
     return(repo.FindByRegion(regionId));
 }