Skip to content

Instantly share code, notes, and snippets.

@kieransenior
Created June 22, 2011 06:09
Show Gist options
  • Save kieransenior/1039578 to your computer and use it in GitHub Desktop.
Save kieransenior/1039578 to your computer and use it in GitHub Desktop.
Model Management Blog Example
public class City : MyProject.Models.City
{
public string PopulationGroup()
{
if(this.population < 100)
return "Small";
else if(this.population >= 100 && this.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