コード例 #1
0
ファイル: Trainer.cs プロジェクト: jmacisaac0/Portfolio
 public Trainer(string strName, Athlete athEmployer)
     : base(strName, ProfType.Trainer, 0.05m, athEmployer)
 {
 }
コード例 #2
0
 public Lawyer(string strName, Athlete athEmployer)
     : base(strName, ProfType.Lawyer, 0.10m, athEmployer)
 {
 }
コード例 #3
0
 public Agent(string strName, Athlete athEmployer)
     : base(strName, ProfType.Agent, 0.07m, athEmployer)
 {
 }
コード例 #4
0
 public PersonalAssistant(string strName, Athlete athEmployer)
     : base(strName, ProfType.PersonalAssistant, 0.03m, athEmployer)
 {
 }