Ejemplo n.º 1
0
 /// <summary>
 /// A patient can update its data
 /// </summary>
 public bool Update(Patient patient)
 {
     if (patient == null)
     {
         throw new NullReferenceException("De patiënt is leeg.");
     }
     return(context.Update(patient));
 }
Ejemplo n.º 2
0
 public bool Update(Patient obj)
 {
     return(_context.Update(obj));
 }