Ejemplo n.º 1
0
 public Human(int id, string name, OurDate dateOfBirth, byte bph, byte bpl, string gender, byte heartRate)
 {
     this.SetId(id);
     this.SetName(name);
     this.SetDateOfBirth(dateOfBirth);
     this.SetBph(bph);
     this.SetBpl(bpl);
     this.SetGender(gender);
     this.SetHeartRate(heartRate);
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            OurDate dateOfBirth1 = new OurDate();

            dateOfBirth1.date  = 10;
            dateOfBirth1.month = 02;
            dateOfBirth1.year  = 1990;
            dateOfBirth1.PrintDateOfBirth();

            OurDate dateOfBirth2 = new OurDate();

            dateOfBirth2.date  = 10;
            dateOfBirth2.month = 05;
            dateOfBirth2.year  = 1997;
            dateOfBirth2.PrintDateOfBirth();

            OurDate dateOfBirth3 = new OurDate();

            dateOfBirth3.date  = 18;
            dateOfBirth3.month = 07;
            dateOfBirth3.year  = 1998;
            dateOfBirth3.PrintDateOfBirth();

            Human humanOne = new Human();

            humanOne.SetId(100);
            humanOne.SetName("Iron Man");
            humanOne.SetDateOfBirth(dateOfBirth1);
            humanOne.SetBph(113);
            humanOne.SetBpl(85);
            humanOne.SetGender("Male");
            humanOne.SetHeartRate(80);

            humanOne.ShowInformation();



            Human humanTwo = new Human(200, "thor", dateOfBirth2, 90, 50, "Male", 60);

            humanTwo.ShowInformation();

            Human humanThree = new Human(200, "Wonder", dateOfBirth2, 90, 50, "Female", 60);

            humanThree.ShowInformation();

            Human humanFour = new Human(200, "Wonder", dateOfBirth3, 90, 50, "Female", 60);

            humanFour.ShowInformation();
        }
Ejemplo n.º 3
0
 public void SetDateOfBirth(OurDate dateOfBirth)
 {
     this.dateOfBirth = dateOfBirth;
 }