public LoginController(
     SignInManager <ApplicationUser> signInManager,
     UserManager <ApplicationUser> userManager,
     WheelOfFateContext wheelOfFateContext,
     TokenConfigurations tokenConfigurations,
     SigningConfigurations signingConfigurations)
 {
     this.signInManager         = signInManager;
     this.userManager           = userManager;
     this.wheelOfFateContext    = wheelOfFateContext;
     this.tokenConfigurations   = tokenConfigurations;
     this.signingConfigurations = signingConfigurations;
 }
示例#2
0
 public TeamRepository(WheelOfFateContext context)
 {
     this.context = context;
 }
示例#3
0
 public PeopleController(WheelOfFateContext context)
 {
     _context = context;
 }