Esempio n. 1
0
 private void DoInsertSprint()
 {
     Sprints.Insert(Sprints.IndexOf(this) + 1, new UISprint(EvAgg, Sprints, new NodeRoot(EvAgg))
     {
         Name = "NAME", Number = 99, Version = "9.9.9.9"
     });
 }
Esempio n. 2
0
 private void DoInsertSprint()
 {
     Sprints.Insert(Sprints.IndexOf(this) + 1, new UISprint(EvAgg, Sprints, new NodeRoot(EvAgg, viewModel), viewModel, databaseSchemaViewModel)
     {
         Name = "NAME", Number = 99, Version = "9.9.9.9"
     });
 }
Esempio n. 3
0
 private void DoCopySprint()
 {
     this.ConfirmationRequest.Raise(
         new Confirmation {
         Content = "Are you sure to COPY all data from one Sprint to another?", Title = "Confirmation - COPY!"
     },
         c => { if (c.Confirmed)
                {
                    if (Sprints.Count > Sprints.IndexOf(this) + 1)
                    {
                        Sprints[Sprints.IndexOf(this) + 1].Root = this.Root.Copy();
                    }
                }
         });
 }