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 UserAccountController(
     SignInManager <ApplicationUser> signInManager,
     UserManager <ApplicationUser> userManager,
     IUserService userService,
     IIndexUserService indexUserService,
     ILogger <LogoutModel> logger,
     ITakenBooksService takenBooksService,
     IStatsUserService statsUserService,
     IUserProfileService userProfileService,
     IHostingEnvironment hostingEnvironment,
     IMessageService messageService,
     IProfileChakerService profilChekerService)
 {
     this.signInManager       = signInManager;
     this.userManager         = userManager;
     this.userService         = userService;
     this.signInManager       = signInManager;
     this.indexUserService    = indexUserService;
     this.logger              = logger;
     this.takenBooksService   = takenBooksService;
     this.userProfileService  = userProfileService;
     this.messageService      = messageService;
     this.profilChekerService = profilChekerService;
     this.statsUserService    = statsUserService;
     this.hostingEnvironment  = hostingEnvironment;
 }
Esempio n. 3
0
 public StatsUserController(
     IStatsUserService statsUserService,
     INotificationService notificationService,
     IUserService userService,
     IGenreService genreService,
     ITakenBooksService takenBooksService,
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     ILogger <LogoutModel> logger,
     IHostingEnvironment hostingEnvironment)
     : base(notificationService, userService, genreService, takenBooksService, userManager, signInManager, logger, hostingEnvironment)
 {
     this.statsUserService = statsUserService;
 }
Esempio n. 4
0
        public UserController(
            INotificationService notificationService,
            IUserService userService,
            IGenreService genreService,
            ITakenBooksService takenBooksService,
            UserManager <ApplicationUser> userManager,
            SignInManager <ApplicationUser> signInManager,
            ILogger <LogoutModel> logger,
            IHostingEnvironment hostingEnvironment)
        {
            this.notificationService = notificationService;
            this.genreService        = genreService;

            this.userService       = userService;
            this.takenBooksService = takenBooksService;

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