public ChairToAcceptedAuthors(ChairMain parent) { this.parent = parent; phaseTwoController = ApplicationFactory.getPhaseTwoController(); mailSender = new MailSender(); InitializeComponent(); }
public ChairAssignementToReviewer(ChairMain parent) { this.parent = parent; phaseTwoController = ApplicationFactory.getPhaseTwoController(); InitializeComponent(); proposalsDataGridView.DataSource = phaseTwoController.getProposals(); proposalsDataGridView.Columns["Authors"].Visible = false; //if (phaseTwoController.getReviewersThatAcceptedProposal(Int32.Parse(proposalsDataGridView.CurrentRow.Cells[0].Value.ToString())).Count > 0) // reviewersDataGridView.DataSource = phaseTwoController.getReviewersThatAcceptedProposal(Int32.Parse(proposalsDataGridView.CurrentRow.Cells[0].Value.ToString())); }