예제 #1
0
 public ProductRepository(SmartShopContext db) : base(db)
 {
     _db = db;
 }
예제 #2
0
 public ProductUnitOfWork(SmartShopContext db)
 {
     _db = db;
     ProductRepository = new ProductRepository(db);
 }