コード例 #1
0
 public PerformanceCalculator(string team)
 {
     this.Plans       = DIH.Plan.Get();
     this.PlanMetrics = PlanMetric.Get();
     this.Goals       = Goal.Get().FindAll(x => x.Team == team);
     this.GoalMetrics = GoalMetric.Get();
 }
コード例 #2
0
 public PerformanceCalculator()
 {
     this.Plans       = DIH.Plan.Get();
     this.PlanMetrics = PlanMetric.Get();
     this.Goals       = Goal.Get();
     this.GoalMetrics = GoalMetric.Get();
 }