Exemplo n.º 1
0
        override public void BacklogSummary(Tasks task)
        {
            Backlog backlog = new Backlog(title, task);

            Console.WriteLine("==========================");
            Console.WriteLine(title.Title("Number of tasks", task.sampleTask.Count.ToString()));        // How many tasks arrived
            Console.WriteLine(title.Title("Total sprint score", backlog.SprintTotalPoints.ToString())); // How many points does the sprint worth based on arrived tasks
            Console.WriteLine("==========================");
        }
Exemplo n.º 2
0
 public ReportFacade(Tasks task)
 {
     title   = new StandardTitle();
     backlog = new Backlog(title, task);
 }