public AppRepository(IJwtDbContext _context) : base(_context) { }
public MigrationHelper(IJwtDbContext jwtDbContext) { this.jwtDbContext = jwtDbContext; }
public UserRepository(IJwtDbContext context) : base(context) { }
protected GenericRepository(IJwtDbContext _context) { context = _context; dbSet = _context.Set <T>(); }