public bool ConditionMet(ILearningDelivery thisDelivery)
 {
     return(thisDelivery != null &&
            !thisDelivery.LearnActEndDateNullable.HasValue
         ? ProgTypes.WithinMaxmimumOpenTrainingDuration(thisDelivery.LearnStartDate, _fileData.FilePreparationDate())
         : true);
 }