예제 #1
0
 public UnitOfWork(TestAllDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public Repository(TestAllDbContext context)
 {
     _context = context;
     _unitOfWork=new UnitOfWork(_context);
 }
 public TestRepository(TestAllDbContext context) : base(context)
 {
 }