public ProductRepository(LandDbContext dbContext) : base(dbContext)
 {
 }
Example #2
0
 public LandDbContext Init()
 {
     return(dbContext ?? (dbContext = new LandDbContext()));
 }
Example #3
0
 public GenericRepository(LandDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = _dbContext.Set <TEntity>();
 }