Exemplo n.º 1
0
 public AppRepository(IJwtDbContext _context) : base(_context)
 {
 }
Exemplo n.º 2
0
 public MigrationHelper(IJwtDbContext jwtDbContext)
 {
     this.jwtDbContext = jwtDbContext;
 }
Exemplo n.º 3
0
 public UserRepository(IJwtDbContext context)
     : base(context)
 {
 }
Exemplo n.º 4
0
        protected GenericRepository(IJwtDbContext _context)
        {
            context = _context;

            dbSet = _context.Set <T>();
        }