Exemple #1
0
 public Form1( )
 {
     InitializeComponent();
     concertStorage    = new ConcertStorage();
     creatingConcert   = new CreatingConcert(this);
     addingPerformance = new AddingPerformance(this);
 }
Exemple #2
0
 public Form1(ConcertController concertController)
 {
     InitializeComponent();
     concertStorage         = concertController.concertStorage;
     creatingConcert        = new CreatingConcert(this);
     addingPerformance      = new AddingPerformance(this);
     resultform             = new ResultForm(this);
     mixPerformances        = new MixPerformances(this);
     this.concertController = concertController;
 }