コード例 #1
0
 public ProductRepository(OshopContext context)
 {
     this._context = context;
 }
コード例 #2
0
 public UserRepository(OshopContext context)
 {
     this._context = context;
 }
コード例 #3
0
 public ShoppingCartRepository(OshopContext context)
 {
     this._context = context;
 }
コード例 #4
0
ファイル: UnitOfWork.cs プロジェクト: VuHoi/Oshop-Core
 public UnitOfWork(OshopContext context)
 {
     this._context = context;
 }
コード例 #5
0
 public CategoryRepository(OshopContext context)
 {
     this._context = context;
 }