public IList<HomeAwayPropertyModel> GetPropertyList()
 {
     RequestService service = new RequestService();
     return service.GetProperty();
 }
 public HomeAwayPropertyModel GetProperty(int id)
 {
     RequestService service = new RequestService();
     return service.GetProperty(id).FirstOrDefault();
 }