public ListenerMain(Form parentForm, User loggedUser)
 {
     InitializeComponent();
     PhaseThreeController = ApplicationFactory.GetPhaseThreeController();
     ParentForm           = parentForm;
     LoggedUser           = loggedUser;
 }
 public ProgramComitee(Form parentForm)
 {
     InitializeComponent();
     PhaseThreeController = ApplicationFactory.GetPhaseThreeController();
     LoadSections();
     btnSectionLeader.Enabled = false;
     ParentForm = parentForm;
 }
 public RoomsDistribution(Form parentForm)
 {
     InitializeComponent();
     ParentForm           = parentForm;
     phaseThreeController = ApplicationFactory.GetPhaseThreeController();
 }