public IActionResult DeleteContact(string id) { var status = _services.DeleteContact(id); if (!status) { return(BadRequest()); } return(Ok()); }