Exemplo n.º 1
0
 public async Task UpdateAsync(ObjectiveKeyResult objectiveKeyResult)
 {
     throw new NotImplementedException();
 }
        public bool ObjectiveWeightsEqual100(ObjectiveKeyResult objectiveKeyResult, Objective newObjective)
        {
            var currentSum = objectiveKeyResult.Objectives.Sum(o => o.Weight);

            return(currentSum + newObjective.Weight != 100);
        }