AtomTester.Patient.Patient C# (CSharp) Метод

Patient() публичный Метод

public Patient ( ) : System
Результат System
        public Patient()
        {
            this.allergies = new List<string>();
            this.molecules = new List<string>();
            this.pathologies = new List<string>();

            this.breastFeeding = "NONE";
            this.weeksOfAmenorrhea = 0;
            this.weight = 80f;
            this.creatin = 100;
            this.gender = "MALE";
            this.height = 180;
            this.hepaticInsufficiency = "NONE";
            this.dateOfBirth = "2012-11-08T15: 44:50.980+01:00";
        }
Patient