Beispiel #1
0
 public CloudBookListManager(
     IBookDomainService book,
     IBookListCellDomainService bookListCell,
     IBookListDomainService bookList)
 {
     _book         = book;
     _bookListCell = bookListCell;
     _bookList     = bookList;
 }
Beispiel #2
0
 public BookListAppService(
     IBookListDomainService bookList,
     IBookListCellDomainService bookListCell,
     ICloudBookListManager manager,
     IRepository <BookList, long> repository) : base(repository)
 {
     _bookList     = bookList;
     _manager      = manager;
     _bookListCell = bookListCell;
 }