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