public AdministratorPanel()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     authCore = new AuthenticationCore();
     confCore = new ConferenceCore();
     UserCredentials.Username = "******";
     InitializeData();
 }
Exemple #2
0
 public ManagerPanel()
 {
     InitializeComponent();
     WindowHelper.FullScreenWindowSettings(this, UserLabel, ConferenceLabel);
     authCore    = new AuthenticationCore();
     confCore    = new ConferenceCore();
     eventCore   = new EventCore();
     sessionCore = new SessionCore();
     InitializeData();
 }
 public AddEditConference(ConferenceDTO conference)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core = new ConferenceCore();
     currentConference = conference;
     if (conference != null)
     {
         InitializeEditFields();
     }
 }
 public MySessions()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core             = new SessionCore();
     articleCore      = new ArticleCore();
     presentationCore = new PresentationCore();
     confCore         = new ConferenceCore();
     InitializeGradeBox();
     LoadSessions();
 }