Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Last active September 17, 2019 13:12
Embed
What would you like to do?
resume.AssociatesDegreeScore = EvaluateEducation(resume.HasAssociatesDegree,
"associates",
() => CalculateAssociatesDegreeScore());
resume.BachelorsDegreeScore = EvaluateEducation(resume.HasBachelorsDegree,
"bachelors",
() => CalculateBachelorsDegreeScore());
resume.MastersDegreeScore = EvaluateEducation(resume.HasMastersDegree,
"masters",
() => CalculateMastersDegreeScore());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment