public static bool MatchesEarning(this PriceEpisodeMatchEntity source, RawEarning rhs)
 {
     return(source.LearnRefNumber == rhs.LearnRefNumber &&
            source.PriceEpisodeIdentifier == rhs.PriceEpisodeIdentifier &&
            source.Ukprn == rhs.Ukprn);
 }
 public static bool MatchesCommitment(this PriceEpisodeMatchEntity source, DasCommitment rhs)
 {
     return(source.CommitmentId == rhs.CommitmentId);
 }