Example #1
0
 public Swimmer() : base()
 {
     coach = new Coach("Not assigned");
     Coach.RegistrationNumber = 0;
     NoOfRegistrant--;
 }
Example #2
0
 public Swimmer(string name, DateTime dOB, Address adress, long telNumber) : base(name, dOB, adress, telNumber)
 {
     coach = new Coach("Not assigned");
     Coach.RegistrationNumber = 0;
     NoOfRegistrant--;
 }
Example #3
0
 public void AddCoach(Coach aCoach)
 {
     aCoach.Club = this;
 }