public LibraryController(
            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)
        {
            this.addBookService        = addBookService;
            this.notificationService   = notificationService;
            this.allAddedBooksServices = allAddedBooksServices;
            this.genreService          = genreService;
            this.giveBookService       = giveBookService;
            this.givenBooksService     = givenBooksService;

            this.userService = userService;

            this.userManager        = userManager;
            this.signInManager      = signInManager;
            this.logger             = logger;
            this.hostingEnvironment = hostingEnvironment;
        }
 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;
 }
 public AllAddedBooksController(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)
 {
 }