public Place UpdatePlace(Place place)
 {
     throw new NotImplementedException();
 }
 public void CreatePlace(Place place)
 {
     _context.Places.Add(place);
     Save();
 }