Example #1
0
 public LibraryLogic(IBookService bookService, IHolderService holdersService, INotificationService notificationService, IKeyWordService keyWordService, IStatusLogService statusLogService, IUserService userService, IRequestClient <IMailSend> requestClient, IImageLogic imageLogic, IRaitingBooksService raitingBooksService)
 {
     _bookService         = bookService;
     _holdersService      = holdersService;
     _notificationService = notificationService;
     _keyWordService      = keyWordService;
     _statusLogService    = statusLogService;
     _userService         = userService;
     _requestClient       = requestClient;
     _imageLogic          = imageLogic;
     _raitingBooksService = raitingBooksService;
 }
Example #2
0
 public RaitingBooksController(IRaitingBooksService raitingBooksService)
 {
     _raitingBooksService = raitingBooksService;
 }