public async Task <IActionResult> All() { try { var schools = await _repository.All(); return(Ok(schools)); } catch (Exception) { throw; } }