コード例 #1
0
 public UserRepository(InternitlawContext dbContext) : base(dbContext)
 {
 }
コード例 #2
0
ファイル: RoleRepository.cs プロジェクト: Mutusva/Internitlaw
 public RoleRepository(InternitlawContext dbContext) : base(dbContext)
 {
 }
コード例 #3
0
 public GenericRepository(InternitlawContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = dbContext.Set <TEntity>();
 }