Beispiel #1
0
 public void CreateColleagues()
 {
     c1 = new Checkbox("check1");
     c2 = new Checkbox("check2");
     q1 = new Question("question1");
     q2 = new Question("question2");
     c1.Mediator(this);
     c2.Mediator(this);
     q1.Mediator(this);
     q2.Mediator(this);
 }