Skip to content

Instantly share code, notes, and snippets.

@kieransenior
Created June 28, 2011 07:42
Show Gist options
  • Save kieransenior/1050678 to your computer and use it in GitHub Desktop.
Save kieransenior/1050678 to your computer and use it in GitHub Desktop.
Model Management Blog Example - Helper Method
public class Helpers
{
public static string PopulationGroup(int population)
{
if(population < 100)
return "Small";
else if(population >= 100 && population < 500)
return "Medium";
else
return "Large";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment