コード例 #1
0
 public void Insert(Student s)
 {
     Console.Write(s.ToString() + " Added to List");
     StudentList.Add(s);
 }
コード例 #2
0
 public void Update(Student s)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public void Insert(Student s)
 {
     Console.Write(s.ToString() + " Added to database");
 }