예제 #1
0
 /// <summary>
 /// Remove an existing Backend.Model.Accounts.Patient from the collection
 /// </summary>
 /// <pdGenerated>Default Remove</pdGenerated>
 public void RemovePatient(Backend.Model.Accounts.Patient oldPatient)
 {
     if (oldPatient == null)
     {
         return;
     }
     if (this.patient != null)
     {
         if (this.patient.Contains(oldPatient))
         {
             this.patient.Remove(oldPatient);
         }
     }
 }
예제 #2
0
 /// <summary>
 /// Add a new Backend.Model.Accounts.Patient in the collection
 /// </summary>
 /// <pdGenerated>Default Add</pdGenerated>
 public void AddPatient(Backend.Model.Accounts.Patient newPatient)
 {
     if (newPatient == null)
     {
         return;
     }
     if (this.patient == null)
     {
         this.patient = new System.Collections.Generic.List <Patient>();
     }
     if (!this.patient.Contains(newPatient))
     {
         this.patient.Add(newPatient);
     }
 }
예제 #3
0
 public void DeletePatientAccount(Backend.Model.Accounts.Patient patient)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public void NewReport(Backend.Model.Accounts.Patient patient)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public List <Patient> GetPatientsByPhysitian(Backend.Model.Accounts.Patient physitian)
 {
     throw new NotImplementedException();
 }
예제 #6
0
 private bool IsGuestAccount(Backend.Model.Accounts.Patient patient)
 {
     throw new NotImplementedException();
 }