Example #1
0
 public bool ConditionMet(ILearningDelivery thisDelivery)
 {
     return(thisDelivery != null
         ? thisDelivery.LearnStartDate > DateTime.MinValue &&
            ProgTypes.WithinMaxmimumTrainingDuration(thisDelivery.LearnStartDate, thisDelivery.LearnPlanEndDate)
         : true);
 }
Example #2
0
 public bool ConditionMet(ILearningDelivery thisDelivery)
 {
     return(thisDelivery != null && thisDelivery.LearnActEndDateNullable.HasValue
         ? ProgTypes.WithinMaxmimumTrainingDuration(thisDelivery.LearnStartDate, thisDelivery.LearnActEndDateNullable.Value)
         : true);
 }