public AuthorPanel() { InitializeComponent(); WindowHelper.FullScreenWindowSettings(this, UserLabel, ConferenceLabel); articleCore = new ArticleCore(); InitializeData(); }
public ReviewerPanel() { InitializeComponent(); WindowHelper.SmallWindowSettings(this); core = new ArticleCore(); LoadData(); }
public AssignAuthor(int articleId) { InitializeComponent(); WindowHelper.SmallWindowSettings(this); authorCore = new AuthorCore(); authCore = new AuthenticationCore(); articleCore = new ArticleCore(); this.articleId = articleId; }
public ArticleDetails(ArticleDTO article) { InitializeComponent(); WindowHelper.SmallWindowSettings(this); core = new ArticleCore(); presCore = new PresentationCore(); currentArticle = article; FillArticleBoxes(); }
public PresentationSpecialSession(SpecialSessionDTO session) { InitializeComponent(); WindowHelper.SmallWindowSettings(this); this.session = session; core = new PresentationCore(); articleCore = new ArticleCore(); FillSessionBoxes(); LoadPresentations(); }
public PresentationDetailsReadOnly(PresentationDTO presentation) { InitializeComponent(); WindowHelper.SmallWindowSettings(this); authCore = new AuthenticationCore(); articleCore = new ArticleCore(); sessionCore = new SessionCore(); this.presentation = presentation; FillPresentationBoxes(); }
public MySessions() { InitializeComponent(); WindowHelper.SmallWindowSettings(this); core = new SessionCore(); articleCore = new ArticleCore(); presentationCore = new PresentationCore(); confCore = new ConferenceCore(); InitializeGradeBox(); LoadSessions(); }
public SubmitArticle(ArticleDTO article) { InitializeComponent(); WindowHelper.SmallWindowSettings(this); core = new ArticleCore(); sessionCore = new SessionCore(); LoadSpecialSessions(); currentArticle = article; if (article != null) { FillArticleBoxes(); } }