예제 #1
0
 public PatientObj()
 {
     _index = 0;
     _ds    = new PatientDataSet();
     _ds.V_PATIENT.AddV_PATIENTRow(
         0,                                                                                              // PatientID
         "",                                                                                             // FirstName
         "",                                                                                             // MiddleInitial
         "",                                                                                             // LastName
         DateTime.MinValue,                                                                              // BirthDate
         "",                                                                                             // Gender
         "",                                                                                             // Height
         "",                                                                                             // Weight
         "",                                                                                             // Alias
         "",                                                                                             // MedRedNumber
         "",                                                                                             // Physician
         0,                                                                                              // PatientType
         "",                                                                                             // PatientFaciltyID
         ""                                                                                              // SiteName
         );
 }
예제 #2
0
 public PatientObj(PatientDataSet ds, int index)
 {
     _ds    = ds;
     _index = index;
 }
예제 #3
0
 public PatientObjList(PatientDataSet dsPatient)
 {
     _ds = dsPatient;
 }