Created
January 3, 2012 15:48
-
-
Save JoanComasFdz/1555433 to your computer and use it in GitHub Desktop.
Basic bussines object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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