Пример #1
0
 //TODO : This is for testing, but we dont need this!!!
 /// <summary>
 /// This is not needed...
 /// </summary>
 public long Insert(Patient patient)
 {
     if (patient == null)
     {
         throw new NullReferenceException("De patiënt is leeg.");
     }
     return(context.Insert(patient));
 }
Пример #2
0
 public void Insert(Patient obj)
 {
     _context.Insert(obj);
 }