public IActionResult CreateStudent([FromBody] Student student) { try { return(Ok(schoolService.CreateStudent(student))); } catch (System.Exception e) { return(BadRequest(e.Message)); } }