public amusingArticleUserRepository(amusinghoSDbContext context) : base(context)
 {
 }
 public amusingArticleDetailsRepository(amusinghoSDbContext context) : base(context)
 {
 }
예제 #3
0
 public UnitOfWork(amusinghoSDbContext dbContext)
 {
     DbContext = dbContext;
 }
예제 #4
0
 public RepositoryBase(amusinghoSDbContext context)
 {
     DbContext = context;
     _dbSet    = DbContext.Set <T>();
 }
 public amusingArticleCommentRepository(amusinghoSDbContext context) : base(context)
 {
 }