Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ObservableCollection<Questions> tests;
  2.  
  3. currentComponent component;
  4. typeOfTest typeOfTest;
  5. private int id;
  6.  
  7. //konstruktor
  8. public User()
  9. {
  10. tests = new ObservableCollection<Questions>();
  11. }
  12.  
  13.  
  14.  
  15. .
  16.  
  17. .
  18. .
  19.  
  20.  
  21. //propercja do listy testow uzytkownika
  22. internal ObservableCollection<Questions> Tests
  23. {
  24. get
  25. {
  26. return tests;
  27. }
  28.  
  29. set
  30. {
  31. tests = value;
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement