Skip to content

Instantly share code, notes, and snippets.

@Dzitskiy
Forked from jzakaryan/Order.cs
Created November 29, 2022 16:42
Show Gist options
  • Select an option

  • Save Dzitskiy/e068c7b27e5a84a915bbc794883b49b9 to your computer and use it in GitHub Desktop.

Select an option

Save Dzitskiy/e068c7b27e5a84a915bbc794883b49b9 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