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