Skip to content

Instantly share code, notes, and snippets.

@JoanComasFdz
Created January 3, 2012 15:48
Show Gist options
  • Save JoanComasFdz/1555433 to your computer and use it in GitHub Desktop.
Save JoanComasFdz/1555433 to your computer and use it in GitHub Desktop.
Basic bussines object
class BussinessObject
{
public int Id { get; set; }
public string Name { get; set; }
public BussinessObject(int id, string name)
{
Id = id;
Name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment