Advertisement
Guest User

Untitled

a guest
Oct 15th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. private int ID;
  2. private string FullName;
  3. private int Phone;
  4. private string Email;
  5. private string Username;
  6. private string Password;
  7. private int Admin;
  8. private bool isBlocked;
  9.  
  10. public int GetID()
  11. {
  12. return this.ID;
  13. }
  14. public void SetID(int ID)
  15. {
  16. this.ID = ID;
  17. }
  18.  
  19. public string GetFullName()
  20. {
  21. return this.FullName;
  22. }
  23. public void SetFullName(string FullName)
  24. {
  25. this.FullName = FullName;
  26. }
  27.  
  28. public int GetPhone()
  29. {
  30. return this.Phone;
  31. }
  32. public void SetPhone(int Phone)
  33. {
  34. this.Phone = Phone;
  35. }
  36.  
  37. public string GetEmail()
  38. {
  39. return this.Email;
  40. }
  41. public void SetEmail(string Email)
  42. {
  43. this.Email = Email;
  44. }
  45.  
  46. public string GetUsername()
  47. {
  48. return this.Username;
  49. }
  50. public void SetUsername(string Username)
  51. {
  52. this.Username = Username;
  53. }
  54.  
  55. public string GetPassword()
  56. {
  57. return this.Password;
  58. }
  59. public void SetPassword(string Password)
  60. {
  61. this.Password = Password;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement