示例#1
0
 public UnitOfWork(EDataServContext context)
 {
     _context = context;
     Products = new ProductRepository(_context);
 }
 public ProductRepository(EDataServContext context)
     : base(context)
 {
 }