Beispiel #1
0
        public AuthController(TESTEContext appDbContext, IJwtFactory jwtFactory, IOptions <JwtIssuerOptions> jwtOptions)
        {
            _appDbContext = appDbContext;
            _jwtFactory   = jwtFactory;
            _jwtOptions   = jwtOptions.Value;

            _serializerSettings = new JsonSerializerSettings
            {
                Formatting            = Formatting.Indented,
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore
            };
        }
 public Tb07001PerfilController(TESTEContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public Tb07002PermissoesController(TESTEContext context)
 {
     _context = context;
 }