Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class Course
  2. {
  3. public int Id { get; set; }
  4. public string Title { get; set; }
  5. public double? Duration { get; set; }
  6. ...
  7. public Instructor Instructor { get; set; }
  8. }
  9.  
  10. public class Instructor
  11. {
  12. public int Id { get; set; }
  13. public string FirstName { get; set; }
  14. public string LastName { get; set; }
  15. public string Email { get; set; }
  16. ...
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement