Exemplo n.º 1
0
 public ARepository(Dbcontext Context)
 {
     this.context = Context;
     Set          = context.Set <T>();
 }
Exemplo n.º 2
0
 public ARepository()
 {
     context = new Dbcontext();
     Set     = context.Set <T>();
 }
 public ProductRepository(Dbcontext Context) : base(Context)
 {
 }
Exemplo n.º 4
0
 public AuctionRepository(Dbcontext Context) : base(Context)
 {
 }
 public AccountRepository(Dbcontext Context) : base(Context)
 {
 }
 public BidRepository(Dbcontext Context) : base(Context)
 {
 }
 public CategoryRepository(Dbcontext context) : base(context)
 {
 }