Exemple #1
0
        public BaseController(
            IViewBooksService homeService,
            IViewBookService viewBookService,
            IAllLibrariesService allLibraryService,
            IRoleService roleService,
            INotificationService notificationService,
            IGenreService genreService,
            UserManager <ApplicationUser> userManager,
            SignInManager <ApplicationUser> signInManager,
            ILogger <LogoutModel> logger,
            IHostingEnvironment hostingEnvironment)
        {
            this.notificationService = notificationService;
            this.genreService        = genreService;
            this.userManager         = userManager;
            this.signInManager       = signInManager;
            this.logger             = logger;
            this.hostingEnvironment = hostingEnvironment;

            this.homeService       = homeService;
            this.viewBookService   = viewBookService;
            this.allLibraryService = allLibraryService;
            this.roleService       = roleService;
        }
 public HomeController(IViewLibraryService viewLibraryService, IViewBooksService homeService, IViewBookService viewBookService, IAllLibrariesService allLibraryService, IRoleService roleService, INotificationService notificationService, IGenreService genreService, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ILogger <LogoutModel> logger, IHostingEnvironment hostingEnvironment) : base(homeService, viewBookService, allLibraryService, roleService, notificationService, genreService, userManager, signInManager, logger, hostingEnvironment)
 {
     this.viewLibraryService = viewLibraryService;
 }
Exemple #3
0
 public SettingsController(ISettingsService settingsService, IDeletableEntityRepository <Setting> repository, IViewBooksService homeService, IViewBookService viewBookService, IAllLibrariesService allLibraryService, IRoleService roleService, INotificationService notificationService, IGenreService genreService, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ILogger <LogoutModel> logger, IHostingEnvironment hostingEnvironment) : base(homeService, viewBookService, allLibraryService, roleService, notificationService, genreService, userManager, signInManager, logger, hostingEnvironment)
 {
     this.settingsService = settingsService;
     this.repository      = repository;
 }