Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. namespace Banking
  3. {
  4. public class Customer
  5. {
  6. public string Name { get; set; }
  7. public string Surname { get; set; }
  8. public string Address { get; set; }
  9. public string Phone { get; set; }
  10. public double MoneyAmount { get; set; }
  11. public string Password { get; set; }
  12. public string AccountNumber { get; set; }
  13.  
  14. public Customer()
  15. {
  16.  
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement