Advertisement
Guest User

Untitled

a guest
May 24th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace CoursePrediction{
  6.  
  7. class Student{
  8. private int studentID;
  9. private String studentName;
  10. private Date studentDOB;
  11. private String username;
  12. private String password;
  13.  
  14. public int studentID{
  15. get{
  16. return studentID;
  17. }
  18.  
  19. set{
  20. studentID = value;
  21. }
  22. }
  23.  
  24. public String studentName{
  25. get{
  26. return studentName;
  27. }
  28.  
  29. set{
  30. studentName = value;
  31. }
  32. }
  33.  
  34. public Date studentDOB{
  35. get{
  36. return studentDOB;
  37. }
  38.  
  39. set{
  40. studentDOB = value;
  41. }
  42. }
  43.  
  44. public String username{
  45. get{
  46. return username;
  47. }
  48.  
  49. set{
  50. username = value;
  51. }
  52. }
  53.  
  54. public String password{
  55. get{
  56. return password;
  57. }
  58.  
  59. set{
  60. password = value;
  61. }
  62. }
  63. }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement