コード例 #1
0
ファイル: PatientDirInfo.cs プロジェクト: CS499Group6/PIMS
        public PatientDirInfo()
        {

            patientID = (id++).ToString();
            fName = "Thomas";
            mName = "Brandon";
            lName = "Kibler";
            gender = true;
            DOB = new DateTime(1976,9,12);
            strAddress = "314 Cumberland Drive";
            city = "Huntsville";
            state = "Alabama";
            zip = "35803";
            phoneNum1 = "2569199468";
            phoneNum2 = "";
            visitors = new List<Visitor>();
            location = new HospLocation();
            emerContact1 = new EmerContact();
            emerContact2 = new EmerContact();
            //emerContact1.name = "";
            //emerContact1.phoneNum = "";
            //emerContact2.name = "";
            //emerContact2.phoneNum = "";


        }
コード例 #2
0
 public PatientDirInfo()
 {
     visitors     = new List <Visitor>();
     location     = new HospLocation();
     emerContact1 = new EmerContact();
     emerContact2 = new EmerContact();
 }
コード例 #3
0
ファイル: PatientDirInfo.cs プロジェクト: CS499Group6/PIMS
 public PatientDirInfo()
 { 
     visitors = new List<Visitor>();
     location = new HospLocation();
     emerContact1 = new EmerContact();
     emerContact2 = new EmerContact();
 }
コード例 #4
0
 public PatientDirInfo()
 {
     patientID    = (id++).ToString();
     fName        = "Thomas";
     mName        = "Brandon";
     lName        = "Kibler";
     gender       = true;
     DOB          = new DateTime(1976, 9, 12);
     strAddress   = "314 Cumberland Drive";
     city         = "Huntsville";
     state        = "Alabama";
     zip          = "35803";
     phoneNum1    = "2569199468";
     phoneNum2    = "";
     visitors     = new List <Visitor>();
     location     = new HospLocation();
     emerContact1 = new EmerContact();
     emerContact2 = new EmerContact();
     //emerContact1.name = "";
     //emerContact1.phoneNum = "";
     //emerContact2.name = "";
     //emerContact2.phoneNum = "";
 }