Esempio n. 1
0
 public Swimmer() : base()
 {
     coach = new Coach("Not assigned");
     Coach.RegistrationNumber = 0;
     NoOfRegistrant--;
 }
Esempio n. 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--;
 }
Esempio n. 3
0
 public void AddCoach(Coach aCoach)
 {
     aCoach.Club = this;
 }