示例#1
0
        //  private readonly UserManager<Account> _accountManager;

        /*   private readonly IJwtFactory _jwtFactory;
         * private readonly JwtIssuerOptions _jwtOptions;
         * private readonly JsonSerializerSettings _serializerSettings; */

        public AuthController(MongoAccountManager context)
        {
            _context = context;

            /*  _jwtFactory = jwtFactory;
             * //_accountManager = accountManager;
             * _jwtOptions = jwtOptions;
             * _serializerSettings = serializerSettings;*/
        }
示例#2
0
 public AccountController(MongoAccountManager context)
 {
     _context = context;
 }