public int GetTotalEstimation() { int sum = 0; Backlog.ForEach(task => sum += task.GetActualEstimate()); return(sum); }