Пример #1
0
 public HomeController(IBookService bookService, IAuthorService authorService, IRateService rateService, ILibraryHttpDataClient client)
 {
     _bookService   = bookService;
     _authorService = authorService;
     _rateService   = rateService;
     _client        = client;
 }
Пример #2
0
 public ManageLibraryController(IBookService bookService, IAuthorService authorService, IRateService rateService, ICommentService commentService, ILibraryHttpDataClient client)
 {
     _bookService    = bookService;
     _authorService  = authorService;
     _commentService = commentService;
     _client         = client;
     _rateService    = rateService;
 }
Пример #3
0
 public ManageCommentsController(ICommentService commentService, ILibraryHttpDataClient client)
 {
     _commentService = commentService;
     _client         = client;
 }