예제 #1
0
        public UnitOfWork(MassMarketContext context)
        {
            _context = context;

            Products   = new ProductRepository(context);
            Categories = new CategoryRepository(context);
        }
예제 #2
0
 public ProductRepository(MassMarketContext context) : base(context)
 {
 }