public IActionResult DeleteNation(int id) { if (_nationService.DeleteNation(id)) { return(Ok()); } else { return(BadRequest()); } }