public IActionResult FetchStudent(string id) { try { return(Ok(_dbService.FetchStudent(id))); } catch (Exception e) { return(BadRequest("Exception: " + e.Message + "\n" + e.StackTrace)); } }