コード例 #1
0
ファイル: CylinderController.cs プロジェクト: roy-subrata/Lpg
 public CylinderController(LpgDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
コード例 #2
0
ファイル: StockController.cs プロジェクト: roy-subrata/Lpg
 public StockController(LpgDbContext context)
 {
     _context = context;
 }
コード例 #3
0
ファイル: LpgDbSeed.cs プロジェクト: roy-subrata/Lpg
 public LpgDbSeed(LpgDbContext context)
 {
     _context = context;
 }
コード例 #4
0
ファイル: SupplierController.cs プロジェクト: roy-subrata/Lpg
 public SupplierController(LpgDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #5
0
 public PurchaseOrdersController(LpgDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }