示例#1
0
 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)
 {
 }