Exemplo n.º 1
0
 public Event(Sport sport)
 {
     Sport        = sport;
     Participants = new List <Participant>();
 }
Exemplo n.º 2
0
 public void ChangeSport(Sport sport)
 {
     Sport = sport;
 }
Exemplo n.º 3
0
 public Sportsman(string firstName, string lastName, DateTime birthDate, Country country, Sport sport)
 {
     FirstName = firstName;
     LastName  = lastName;
     BirthDate = birthDate;
     Country   = country;
     Sport     = sport;
 }