Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Balance
- {
- private ICollection<Transaction> transactions;
- public Balance()
- {
- this.transactions = new HashSet<Transaction>();
- }
- public ICollection<Transaction> Transactions
- {
- get { return this.transactions; }
- set { this.transactions = value; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment