示例#1
0
 public AuthenticationController(TalentTrackContext context, UserManager <ApplicationUser> userManager, JwtIssuerOptions jwtOptions, IJwtFactory jwtFactory)
 {
     _context     = context;
     _userManager = userManager;
     _jwtOptions  = jwtOptions;
     _jwtFactory  = jwtFactory;
 }
示例#2
0
 public ReviewsController(TalentTrackContext context)
 {
     _context = context;
 }
示例#3
0
 public UsersController(TalentTrackContext context, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager)
 {
     _context     = context;
     _userManager = userManager;
     _roleManager = roleManager;
 }
示例#4
0
 public ParticipationsService(TalentTrackContext context)
 {
     _context = context;
 }
示例#5
0
 public TeamsController(TalentTrackContext context)
 {
     _context = context;
 }
 public PlayersController(TalentTrackContext context)
 {
     _context = context;
 }