Skip to content

Instantly share code, notes, and snippets.

@jzakaryan
Created August 19, 2017 20:27
Show Gist options
  • Select an option

  • Save jzakaryan/2b81415d1902b671aaca22b0509d9651 to your computer and use it in GitHub Desktop.

Select an option

Save jzakaryan/2b81415d1902b671aaca22b0509d9651 to your computer and use it in GitHub Desktop.
public class Order
{
public Guid ID { get { /*…*/ } }
public decimal Total { get { /*…*/ } }
public List<Item> Items { get { /*…*/ } }
public User User { get { /*…*/ } }
public void Load() { /*…*/ }
public void Save() { /*…*/ }
public void Update() { /*…*/ }
public void Remove() { /*…*/ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment