Esempio n. 1
0
        public UserController(IOptions <JwtIssuerOptions> jwtOptions, IConfigurationRoot config_root, LottoLionContext db_context)
        {
            __usermgr = new UserManager(jwtOptions.Value);
            __cconfig.SetConfigRoot(config_root);

            __db_context = db_context;
            __memberQ    = new MemberQ();
        }