Beispiel #1
0
 public Mammifere(string nom, string LieuHabitation, string monCrie, bool jeSuisDomestique, Dangerosite danger)
 {
     this.nom              = nom;
     this.LieuHabitation   = LieuHabitation;
     this.monCrie          = monCrie;
     this.jeSuisDomestique = jeSuisDomestique;
     this.danger           = danger;
 }
Beispiel #2
0
 public Cetace(string nom, string LieuHabitation, string monCrie, bool jeSuisDomestique, Dangerosite danger, int DureeApnee, int ProfondeurPlongee)
     : base(nom, LieuHabitation, monCrie, jeSuisDomestique, danger)
 {
     this.DureeApnee        = DureeApnee;
     this.ProfondeurPlongee = ProfondeurPlongee;
 }
Beispiel #3
0
 public Baleine(string nom, string LieuHabitation, string monCrie, bool jeSuisDomestique, Dangerosite danger, int DureeApnee, int ProfondeurPlongee)
     : base(nom, LieuHabitation, monCrie, jeSuisDomestique, danger, DureeApnee, ProfondeurPlongee)
 {
 }
Beispiel #4
0
 public Chat(string nom, string LieuHabitation, string monCrie, bool jeSuisDomestique, Dangerosite danger, int nombrePattes)
     : base(nom, LieuHabitation, monCrie, jeSuisDomestique, danger, nombrePattes)
 {
 }
Beispiel #5
0
 public Felin(string nom, string LieuHabitation, string monCrie, bool jeSuisDomestique, Dangerosite danger, int nombrePattes)
     : base(nom, LieuHabitation, monCrie, jeSuisDomestique, danger)
 {
     this.nombrePattes = nombrePattes;
 }