Esempio n. 1
0
 public void AddGymnast(Gymnast g)
 {
     GymnastCoaches.Add(new GymnastCoach(g, this));
 }
Esempio n. 2
0
 public void RemoveGymnast(Gymnast g)
 {
     GymnastCoaches.Remove(GymnastCoaches.FirstOrDefault(gc => gc.Gymnast == g));
 }
Esempio n. 3
0
 public Exercise(string description, string image, Gymnast gymnast)
 {
     Description = description;
     Image       = image;
     Gymnast     = gymnast;
 }