-
-
Save Dzitskiy/e068c7b27e5a84a915bbc794883b49b9 to your computer and use it in GitHub Desktop.
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
| 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