public bool Remove(int id) { Teacher teacher = Find(id); if (teacher == null) { return(false); } return(_teacherRepo.Remove(teacher)); }