private void dgvContributions_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int                 index = dgvContributions.CurrentRow.Index;
            Guid                id    = new Guid(dgvContributions.Rows[index].Cells["PlanContributionId"].Value.ToString());
            PlanContribution    obj   = new PlanContribution(id);
            frmPlanContribution frmPlanContribution = new frmPlanContribution(frmMain_Parent, obj);

            frmPlanContribution.FormClosed += frmPlanContribution_FormClosed;
        }
        private void btnNewContributions_Click(object sender, EventArgs e)
        {
            frmPlanContribution frmPlanContribution = new frmPlanContribution(frmMain_Parent, CurrentPlan);

            frmPlanContribution.FormClosed += frmPlanContribution_FormClosed;
        }