Пример #1
0
 public CoachManager(CoachLayoutType coachLayoutType)
 {
     this.CoachLayout = coachLayoutType;
 }
Пример #2
0
 public Bogi(int maxSeats, CoachLayoutType layoutType)
 {
     this.MaxSeats    = maxSeats;
     this.CoachLayout = layoutType;
     mgr = new CoachManager(layoutType);
 }