Skip to content

Commit

Permalink
fixed bug within the full and relevant logic
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielClarkeEducation committed Nov 21, 2024
1 parent 631fd85 commit d8b8dd9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ public class RatioRequirementModel
public QualificationApprovalStatus ApprovedForUnqualified { get; set; }

public bool IsNotFullAndRelevant =>
// get { return ApprovedForUnqualified && !ApprovedForLevel2 & !ApprovedForLevel3 && !ApprovedForLevel6; }
ApprovedForLevel2 != QualificationApprovalStatus.Approved
|| ApprovedForLevel3 != QualificationApprovalStatus.Approved
|| ApprovedForLevel6 != QualificationApprovalStatus.Approved;
&& ApprovedForLevel3 != QualificationApprovalStatus.Approved
&& ApprovedForLevel6 != QualificationApprovalStatus.Approved;

public string RequirementsHeadingForLevel2 { get; set; } = string.Empty;

Expand Down

0 comments on commit d8b8dd9

Please sign in to comment.