Ejemplo n.º 1
0
 public BookController(IInformationService informationService, IChapterDetailService chapterDetailService, IAudioBookService audioBookService, ITypeEbookService typeEbookService, IUserService userService, IAuthorService authorService, IBookCategoryService bookCategoryService, IBookService bookService, IEbookService ebookService)
 {
     this._authorService        = authorService;
     this._informationService   = informationService;
     this._chapterDetailService = chapterDetailService;
     this._audioBookService     = audioBookService;
     this._bookCategoryService  = bookCategoryService;
     this._bookService          = bookService;
     this._ebookService         = ebookService;
     this._userService          = userService;
     this._typeEbookService     = typeEbookService;
 }
Ejemplo n.º 2
0
 public AudioBookApiController(IAudioBookService audioBookService)
 {
     _audioBookService = audioBookService;
 }
 public AudioBookApiController(IAudioBookService audioBookService)
 {
     _audioBookService = audioBookService;
 }/* what happende here is */
 public AudioBookController(IAudioBookService audioBookService, IBookService bookService)
 {
     this._audioBookService = audioBookService;
     this._bookService      = bookService;
 }