예제 #1
0
 public EfRepository(Pharus_vFinaleDbContext context)
 {
     this.Context = context ?? throw new ArgumentNullException(nameof(context));
     this.DbSet   = this.Context.Set <TEntity>();
 }
예제 #2
0
 public AgreementsRepository(Pharus_vFinaleDbContext context)
 {
     this.Context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public EfDeletableEntityRepository(Pharus_vFinaleDbContext context)
     : base(context)
 {
 }