Esempio n. 1
0
 public Commando(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary, corp)
 {
 }
Esempio n. 2
0
 public Engineer(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary, corp)
 {
     this.Repairs = new HashSet <Repair>();
 }
Esempio n. 3
0
 public SpecializedSoldier(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary)
 {
     this.Corp = corp;
 }