예제 #1
0
 public Repository(Context.Database _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
예제 #2
0
 public Repository()
 {
     this._context = new Context.Database();
     table         = _context.Set <T>();
 }