sivancheva

BankAccount

Feb 14th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class BankAccount
  6. {
  7. int id;
  8. decimal balance;
  9.  
  10. public int Id
  11. {
  12. get { return this.id; }
  13. set { this.id = value; }
  14. }
  15. public decimal Balance
  16. {
  17. get { return this.balance; }
  18. set { this.balance = value; }
  19.  
  20. }
  21. }
Add Comment
Please, Sign In to add comment