コード例 #1
0
ファイル: BanksController.cs プロジェクト: msalah85/PartStore
 public BanksController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #2
0
 public PaymentTypesController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #3
0
 public ItemPartsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #4
0
 public PhotosController(PartStoreContext context, IHostingEnvironment Environment)
 {
     _context     = context;
     _environment = Environment;
 }
コード例 #5
0
 public ModelsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #6
0
 public OperationsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #7
0
 public YearsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #8
0
 public AccountsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #9
0
 public MakesController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #10
0
 public InvoicesController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #11
0
 public SettingsController(PartStoreContext context)
 {
     _context = context;
 }
コード例 #12
0
 public TransactionsService(PartStoreContext context)
 {
     _context = context;
 }