public void Insert(Student s) { Console.Write(s.ToString() + " Added to List"); StudentList.Add(s); }
public void Update(Student s) { throw new NotImplementedException(); }
public void Insert(Student s) { Console.Write(s.ToString() + " Added to database"); }