Example #1
0
 public SessionController(
     IHealthyNutGuysSupervisor supervisor,
     IJwtFactory jwtFactory,
     IOptions <JwtIssuerOptions> jwtOptions,
     UserManager <ApplicationUser> userManager,
     GetIdentity getIdentity,
     ISendEmailService emailSrvice)
 {
     this._supervisor   = supervisor;
     this._jwtFactory   = jwtFactory;
     this._userManager  = userManager;
     this._jwtOptions   = jwtOptions.Value;
     this._getIdentity  = getIdentity;
     this._emailService = emailSrvice;
 }
 public UsersController(IHealthyNutGuysSupervisor supervisor, UserManager <ApplicationUser> userManager)
 {
     this._supervisor  = supervisor;
     this._userManager = userManager;
 }
Example #3
0
 public ShopController(IHealthyNutGuysSupervisor supervisor)
 {
     this._supervisor = supervisor;
 }