public List <StudentLookUp> GetStudents(string keyword)
 {
     Check_StudendId(keyword);
     if (Errors.Count == 0)
     {
         ListsRepo repo = new ListsRepo();
         return(repo.RetrieveStudentsList(keyword));
     }
     return(null);
 }
Пример #2
0
        public List <StudentLookup> GetStudent(string Lname = "", string id = "")
        {
            ListsRepo repo = new ListsRepo();

            return(repo.RetrieveStudentsList(Lname, id));
        }