public IActionResult DeleteByName([FromBody] string name) { try { studentBusiness.DeleteByName(name); return(Ok()); } catch (Exception) { return(BadRequest("Não foi possível completar a requisição")); throw; } }