コード例 #1
0
 public BacklogItem(Backlog backlog, string description, int points)
 {
     this.backlog     = backlog;
     this.description = description;
     backlogState     = new TodoBacklogState();
     backlogState.setBacklogItem(this);
     this.points = points;
     activities  = new List <Activity>();
 }
コード例 #2
0
 public Sprint(string name, DateTime startTime, DateTime endTime, ScrumMaster scrumMaster)
 {
     backlog          = new Backlog();
     this.scrumMaster = scrumMaster;
     this.name        = name;
     this.startTime   = startTime;
     this.endTime     = endTime;
     this.sprintState = new InitializedSprintState();
     sprintState.setSprint(this);
     team = new Dictionary <User, int>();
 }
コード例 #3
0
 public KanbanBoard()
 {
     backlog = new Backlog();
 }