public SearchBookFundQueryHandler(IBookFundService bookFundService,
                                   IPublisherService publisherService,
                                   IAuthorService authorService,
                                   IGenreService genreService,
                                   IBookService bookService,
                                   ILibraryService libraryService)
 {
     this.bookFundService  = bookFundService;
     this.bookService      = bookService;
     this.genreService     = genreService;
     this.publisherService = publisherService;
     this.authorService    = authorService;
     this.libraryService   = libraryService;
 }
示例#2
0
 public UpdateBookFundCommandHandler(IBookFundService bookFundService)
 {
     this.bookFundService = bookFundService;
 }
 public AddBookCommandHandler(IBookFundService bookFundService)
 {
     this.bookFundService = bookFundService;
 }
示例#4
0
        public GetBookFundValidator(IBookFundService bookFundService)
        {
            this.bookFundService = bookFundService;

            CreateRules();
        }
示例#5
0
 public GetBookFundQueryHandler(IBookFundService bookFundService)
 {
     this.bookFundService = bookFundService;
 }