Example #1
0
 public Trainer(string strName, Athlete athEmployer)
     : base(strName, ProfType.Trainer, 0.05m, athEmployer)
 {
 }
Example #2
0
 public Lawyer(string strName, Athlete athEmployer)
     : base(strName, ProfType.Lawyer, 0.10m, athEmployer)
 {
 }
Example #3
0
 public Agent(string strName, Athlete athEmployer)
     : base(strName, ProfType.Agent, 0.07m, athEmployer)
 {
 }
 public PersonalAssistant(string strName, Athlete athEmployer)
     : base(strName, ProfType.PersonalAssistant, 0.03m, athEmployer)
 {
 }