Guest User

Untitled

a guest
Jul 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. namespace TestClass
  2. {
  3. public class ClassRoomList
  4. {
  5. public int ClassID{ get; set; }
  6. public ObservableCollection<CurrentStudentsList> CurrentStudentsArray { get; set; }
  7. }
  8.  
  9. public class CurrentStudentsList
  10. {
  11. public string StudentName { get; set; }
  12. public string StudentID { get; set; }
  13. public ObservableCollection<StudentsMarksList> StudentsMarksArray { get; set; }
  14.  
  15. }
  16. public class StudentsMarksList
  17. {
  18. public string MarkInEnglish { get; set; }
  19. public string MarkInMaths{ get; set; }
  20. }
  21.  
  22. public static ObservableCollection<ClassRoomList> _ClassRoomList = new ObservableCollection<ClassRoomList>();
Add Comment
Please, Sign In to add comment