public LibraryController(ILibraryLogic libraryLogic, IBookService bookService, IUserService userService, IKeyWordService keyWordService)
 {
     _libraryLogic   = libraryLogic;
     _bookService    = bookService;
     _userService    = userService;
     _keyWordService = keyWordService;
 }
Beispiel #2
0
 public CompanyController(IMapper mapper,
                          IUserCompanyService userCompanyService,
                          UserManager <User> userManager,
                          IKeyWordService keyWordService)
 {
     _mapper             = mapper;
     _userCompanyService = userCompanyService;
     _userManager        = userManager;
     _keyWordService     = keyWordService;
 }
Beispiel #3
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;
 }
Beispiel #4
0
 public KeyWordController(IKeyWordService keywordService)
 {
     _keywordService = keywordService;
 }