Created
August 19, 2017 20:27
-
-
Save jzakaryan/2b81415d1902b671aaca22b0509d9651 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