Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 21, 2019 04:57
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/e43e47246839251e5ffaf7253e4c7e90 to your computer and use it in GitHub Desktop.
Save IntegerMan/e43e47246839251e5ffaf7253e4c7e90 to your computer and use it in GitHub Desktop.
private static IResumeAnalyzer GetResumeAnalyzer()
{
var useNewAnalyzer = new UseNewAnalyzer();
if (useNewAnalyzer.FeatureEnabled)
{
return new RewrittenAnalyzer();
}
else
{
return new ResumeAnalyzer();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment