예제 #1
0
 public ARepository()
 {
     context = new Dbcontext();
     Set     = context.Set <T>();
 }
예제 #2
0
 public ARepository(Dbcontext Context)
 {
     this.context = Context;
     Set          = context.Set <T>();
 }