예제 #1
0
 /// <summary>
 /// Calls the first overload
 /// </summary>
 public static Guarantors Add(int NewPatient, Guarantors G1)
 {
     return(Guarantors.Add(G1, NewPatient));
 }
예제 #2
0
 /// <summary>
 /// Should add NewPatient to the G1.PATIENTS.
 /// if G1.PATIENTS already contains NewPatient then nothing is done.
 /// </summary>
 public static Guarantors operator +(Guarantors G1, int NewPatient)
 {
     return(Guarantors.Add(G1, NewPatient));
 }