コード例 #1
0
ファイル: ProductRepository.cs プロジェクト: l-kimleng/wiimix
 public ProductRepository(DbContext context) : base(context)
 {
     _context = context as SaleInventoryContext;
 }
コード例 #2
0
 public StockRepository(DbContext context) : base(context)
 {
     _context = context as SaleInventoryContext;
 }
コード例 #3
0
 public CategoryRepository(DbContext context) : base(context)
 {
     _context = context as SaleInventoryContext;
 }