Example #1
0
 public SeriesFilterModalViewComponent(UserManager <UserModel> userManager,
                                       ICubeCollectionService cubeCollectionService, IConfiguration configuration)
 {
     _userManager           = userManager;
     _cubeCollectionService = cubeCollectionService;
     _configuration         = configuration;
 }
Example #2
0
 public SeriesController(UserManager <UserModel> userManager,
                         ISeriesService seriesService,
                         ICubeCollectionService cubeCollectionService,
                         ICubeService cubeService,
                         ICategoryService categoryService,
                         IConfiguration configuration,
                         IReportService reportService)
 {
     _userManager           = userManager;
     _seriesService         = seriesService;
     _cubeCollectionService = cubeCollectionService;
     _cubeService           = cubeService;
     _categoryService       = categoryService;
     _configuration         = configuration;
     _reportService         = reportService;
 }
Example #3
0
 public UserAdminController(UserManager <UserModel> userMgr, IUserValidator <UserModel> userValidator,
                            IPasswordValidator <UserModel> passwordValidator, IPasswordHasher <UserModel> passwordHasher,
                            IConfiguration configuration, ICubeCollectionService cubeCollectionService,
                            ISeriesService seriesService, ICubeService cubeService,
                            IRequestService requestService, RoleManager <IdentityRole> roleMgr)
 {
     _userManager           = userMgr;
     _userValidator         = userValidator;
     _passwordValidator     = passwordValidator;
     _passwordHasher        = passwordHasher;
     _configuration         = configuration;
     _cubeCollectionService = cubeCollectionService;
     _seriesService         = seriesService;
     _cubeService           = cubeService;
     _requestService        = requestService;
     _roleManger            = roleMgr;
 }
Example #4
0
 public UserController(
     UserManager <UserModel> userManager,
     ICubeCollectionService cubeCollections,
     ICubeService cubeService,
     IConfiguration configuration,
     ICategoryService categoryService,
     ISeriesService seriesService,
     IPasswordValidator <UserModel> passwordValidator,
     IPasswordHasher <UserModel> passwordHasher)
 {
     _userManager            = userManager;
     _cubeCollectionsService = cubeCollections;
     _cubeService            = cubeService;
     _configuration          = configuration;
     _categoryService        = categoryService;
     _seriesService          = seriesService;
     _passwordValidator      = passwordValidator;
     _passwordHasher         = passwordHasher;
 }
Example #5
0
 public SerieStartViewComponent(ICubeCollectionService cubeCollectionService,
                                UserManager <UserModel> userManager)
 {
     _cubeCollectionService = cubeCollectionService;
     _usermanager           = userManager;
 }