public Student GetStudentForm3(string id = "") { StudentRepo repo = new StudentRepo(); Validate(id); if (Errors.Count == 0) { return(repo.RetrieveById(id)); } return(repo.RetrieveById(id)); }
public Student GetStudent(string id) { StudentRepo repo = new StudentRepo(); s = repo.RetrieveById(id); return(s); }
public Student GetStudent(string id = "") { StudentRepo repo = new StudentRepo(); return(repo.RetrieveById(id)); }