public EfCorePostDal(ForumContext forumContext)
     : base(forumContext)
 {
 }
예제 #2
0
 public EfCoreApplicationUserDal(ForumContext forumContext)
     : base(forumContext)
 {
 }
예제 #3
0
 public EfCoreGenericRepository(ForumContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
예제 #4
0
 public DataSeeder(ForumContext context)
 {
     _context = context;
 }
 public EfCoreForumDal(ForumContext forumContext)
     : base(forumContext)
 {
 }