Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Last active September 17, 2019 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/6ea2aa4d8fc6a2d61e123dcc96d5aacd to your computer and use it in GitHub Desktop.
Save IntegerMan/6ea2aa4d8fc6a2d61e123dcc96d5aacd to your computer and use it in GitHub Desktop.
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