public static List <Student> Load()
 {
     return(StudentDA.Load());
 }
 //Loading the teacher record based on the Teacher's Id Card no
 public static Student Load(string idCardNo)
 {
     return(StudentDA.Load(idCardNo));
 }