public bool DD07ConditionMet(int?progType)
 {
     return(!progType.HasValue ||
            (progType.HasValue &&
             progType != 24 &&
             !_dd07.IsApprenticeship(progType)));
 }
 public virtual bool ApprenticeshipConditionMet(int?progType)
 {
     return(_dd07.IsApprenticeship(progType));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Determines whether the specified delivery is apprenticeship.
 /// </summary>
 /// <param name="delivery">The delivery.</param>
 /// <returns>
 ///   <c>true</c> if the specified delivery is apprenticeship; otherwise, <c>false</c>.
 /// </returns>
 public bool IsApprenticeship(ILearningDelivery delivery) =>
 _derivedData07.IsApprenticeship(delivery.ProgTypeNullable);
Ejemplo n.º 4
0
 public bool ConditionMet(int fundModel, int?progType)
 {
     return(fundModel == FundModelConstants.Apprenticeships && !_dd07.IsApprenticeship(progType));
 }
Ejemplo n.º 5
0
 public bool ApprenticeshipConditionMet(int?progType)
 {
     return(progType != 25 &&
            _dd07.IsApprenticeship(progType));
 }
Ejemplo n.º 6
0
 public bool DD07ConditionMet(int?progType)
 {
     return(!_dd07.IsApprenticeship(progType));
 }
 public virtual bool ApprenticeshipConditionMet(int fundModel, int?progType)
 {
     return(!(fundModel == FundModelConstants.NonFunded && _dd07.IsApprenticeship(progType)));
 }