public void Post(PointOfInterest poi)
 {
     _poiResource.Insert(poi);
 }
 public void Put(PointOfInterest poi)
 {
     _poiResource.Save(poi);
 }