public async Task <IActionResult> DeletePlace(int id) { await _placesService.Delete(id); return(Ok(new { token = "Deleted" }));; }