Exemplo n.º 1
0
        private void dgv_STO_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            if (dgv_STO.Columns[e.ColumnIndex].Name == "col_Preplan")
            {
                if ((STO_RUN_STAT)dgv_STO.Rows[e.RowIndex].Cells["col_runstat"].Value == STO_RUN_STAT.RUNNING)
                {
                    MessageBox.Show("Already Running");
                }
                else if ((STO_RUN_STAT)dgv_STO.Rows[e.RowIndex].Cells["col_runstat"].Value == STO_RUN_STAT.TO_RUN)
                {
                    var sto_name   = dgv_STO.Rows[e.RowIndex].Cells["col_STO"].Value.ToString();
                    var sto        = ScrumTeamOwner.GetSTO(sto_name);
                    var preplanner = PrePlanner.GetPrePlannerFromTeamCode(sto.Code);


                    preplanner.AsyncProcessSTO();
                }
            }
        }
Exemplo n.º 2
0
 public PrePlanner(ScrumTeamOwner sto)
 {
     Sto = sto;
 }
Exemplo n.º 3
0
 public PrePlanner(ScrumTeamOwner sto)
 {
     Sto       = sto;
     fbChecker = new FeatureBuildChecker();
 }