//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)); }
public void Insert(Patient obj) { _context.Insert(obj); }