public Student GetByName(string fullName)
 {
     if (fullName == "")
     {
         throw new Exception("Please select a student");
     }
     return(student_db.GetByName(fullName));
 }
 public Student GetByName(string name)
 {
     return(student_db.GetByName(name));
 }