Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class BookListViewModel
  2. {
  3. private List<BookViewModel> _books;
  4.  
  5. public BookListViewModel(List<BookViewModel> books)
  6. {
  7. this._books = books;
  8. }
  9.  
  10. public List<BookViewModel> Books
  11. {
  12. get { return this._books; }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement