public LibraryAccountController(
     IBookService bookService,
     IMessageService messageService,
     IGenreService genreService,
     IAllBooksServices getAllBooks,
     SignInManager <ApplicationUser> signInManager,
     UserManager <ApplicationUser> userManager,
     IGiveBookService giveBookService,
     IUserService userService,
     IGivenBooksService givenBooksService,
     ILogger <LogoutModel> logger,
     ILibraryProfileService libraryProfileService,
     IStatsLibraryService statsLibraryService,
     IIndexLibraryService indexLibraryService,
     IHostingEnvironment hostingEnvironment,
     IProfileChakerService profilChekerService)
 {
     this.bookService           = bookService;
     this.messageService        = messageService;
     this.genreService          = genreService;
     this.getAllBooks           = getAllBooks;
     this.userManager           = userManager;
     this.giveBookService       = giveBookService;
     this.userService           = userService;
     this.givenBooksService     = givenBooksService;
     this.signInManager         = signInManager;
     this.logger                = logger;
     this.libraryProfileService = libraryProfileService;
     this.statsLibraryService   = statsLibraryService;
     this.indexLibraryService   = indexLibraryService;
     this.hostingEnvironment    = hostingEnvironment;
     this.profilChekerService   = profilChekerService;
 }
Exemplo n.º 2
0
 public StatsLibraryController(IStatsLibraryService statsUserService, IAddBookService addBookService, INotificationService notificationService, IAllAddedBooksService allAddedBooksServices, IGiveBookService giveBookService, IGivenBooksService givenBooksService, IUserService userService, IGenreService genreService, ITakenBooksService takenBooksService, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ILogger <LogoutModel> logger, IHostingEnvironment hostingEnvironment) : base(addBookService, notificationService, allAddedBooksServices, giveBookService, givenBooksService, userService, genreService, takenBooksService, userManager, signInManager, logger, hostingEnvironment)
 {
     this.statsUserService = statsUserService;
 }