示例#1
0
        public GenericRepository(AuthenticationDbContext context)
        {
            DbContext = context;

            Entities = DbContext.Set <T>();

            Entities.Load();
        }
示例#2
0
 public UserRepository(AuthenticationDbContext context)
     : base(context)
 {
 }
示例#3
0
 public TokenIdentityRepository(AuthenticationDbContext context)
     : base(context)
 {
 }