예제 #1
0
파일: Commando.cs 프로젝트: Vladi98/C-codes
 public Commando(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary, corp)
 {
 }
예제 #2
0
파일: Engineer.cs 프로젝트: Vladi98/C-codes
 public Engineer(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary, corp)
 {
     this.Repairs = new HashSet <Repair>();
 }
예제 #3
0
 public SpecializedSoldier(int id, string firstName, string lastName, decimal salary, CorpType corp) : base(id, firstName, lastName, salary)
 {
     this.Corp = corp;
 }