Beispiel #1
0
        public ShareBookViewModel(IBookShelfService bookShelfService, IEventAggregator eventAggregator)
        {
            _bookShelfService = bookShelfService;
            _eventAggregator  = eventAggregator;

            _accessRights = new AccessRights();
        }
Beispiel #2
0
        public BookShelfViewModel(IBookShelfService bookShelfService, IEventAggregator eventAggregator, IBookService bookService)
        {
            _bookShelfService = bookShelfService;
            _eventAggregator  = eventAggregator;
            _bookService      = bookService;

            Books = new ObservableCollection <BookViewModel>();
        }
 public CreateBookShelfViewModel(IBookShelfService bookShelfService, IEventAggregator eventAggregator)
 {
     _bookShelfService = bookShelfService;
     _eventAggregator  = eventAggregator;
 }
 public BookShelfController(IBookShelfService bookShelfService, IMapper mapper, IUriService uriService)
 {
     _bookShelfService = bookShelfService;
     _mapper           = mapper;
     _uriService       = uriService;
 }
Beispiel #5
0
 public ShelfController(IBookShelfService service)
 {
     Service = service;
 }
 public ShowBookToImportInfoViewModel(IEventAggregator eventAggregator, IBookShelfService bookShelfService, IBookShareStoreService bookShareStoreService)
 {
     _eventAggregator       = eventAggregator;
     _bookShelfService      = bookShelfService;
     _bookShareStoreService = bookShareStoreService;
 }