Esempio n. 1
0
 public Rabbit(EyesColour eyes, FurColour fur, Gender gender, DateTime birthDay)
 {
     this.Eyes = eyes;
     //this.Fur = fur;
     //this.Gender = gender;
     this.BirthDay = birthDay;
 }
Esempio n. 2
0
 //constructor
 public Dog(string name, int age, Sex sex, FurColour furColour)
 {
     this.Name      = name;
     this.Age       = age;
     this.Sex       = sex;
     this.FurColour = furColour;
 }
Esempio n. 3
0
 //constructor
 public Dog(string name, int age, Sex sex, FurColour furColour)
 {
     this.Name = name;
     this.Age = age;
     this.Sex = sex;
     this.FurColour = furColour;
 }