Exemple #1
0
 public SearchController(UserManager <LoginUser> userManager, IChannel channelService, IThread threadService, IApplicationUsers userService, IAlbum albumService)
 {
     _userManager    = userManager;
     _channelService = channelService;
     _threadService  = threadService;
     _userService    = userService;
     _albumService   = albumService;
 }
Exemple #2
0
 public RoleController(RoleManager <IdentityRole> roleManager,
                       IApplicationUsers userService,
                       UserManager <LoginUser> userManager)
 {
     _roleManager = roleManager;
     _userService = userService;
     _userManager = userManager;
 }
Exemple #3
0
 public AchievementController(IAchievement service,
                              IApplicationUsers userService,
                              UserManager <LoginUser> userManager,
                              IConfiguration configuration,
                              IUpload uploadService)
 {
     _service       = service;
     _userService   = userService;
     _userManager   = userManager;
     _configuration = configuration;
     _uploadService = uploadService;
 }
Exemple #4
0
 public ThreadController(IThread thread,
                         IConfiguration configuration,
                         UserManager <LoginUser> userManager,
                         IUpload uploadService,
                         IApplicationUsers userService,
                         IVision visionService,
                         IAlbum albumService,
                         IChannel channelService)
 {
     _service        = thread;
     _configuration  = configuration;
     _userManager    = userManager;
     _uploadService  = uploadService;
     _userService    = userService;
     _visionService  = visionService;
     _albumService   = albumService;
     _channelService = channelService;
 }
Exemple #5
0
 public ProfileController(
     UserManager <LoginUser> userManager,
     RoleManager <IdentityRole> roleManager,
     IApplicationUsers userService,
     IUpload uploadService,
     IConfiguration configuration,
     IThread threadService,
     IChannel channelSerivce,
     IAchievement achievementService
     )
 {
     _userManager        = userManager;
     _roleManager        = roleManager;
     _service            = userService;
     _configuration      = configuration;
     _uploadService      = uploadService;
     _threadService      = threadService;
     _channelSerivce     = channelSerivce;
     _achievementService = achievementService;
 }
Exemple #6
0
 public MapController(IThread threadService, IApplicationUsers userService)
 {
     _threadService = threadService;
     _userService   = userService;
 }