public IActionResult Update(int id, [FromBody] Place Place)
 {
     _context.UpdatePlace(id, Place);
     return(Ok("object updated"));
 }