public async Task <IActionResult> DeletePerson(int id) { await peopleService.DeletePersonById(id); return(Ok(new { deteled_id = id })); }