コード例 #1
0
 public MovieController(VideoDBContext context)
 {
     _context = context;
 }
コード例 #2
0
 public HomeController(VideoDBContext context)
 {
     _context = context;
 }
コード例 #3
0
 public RentalRecordController(VideoDBContext context)
 {
     _context = context;
 }
コード例 #4
0
 public SQLVideoRepository(VideoDBContext context)
 {
     videoDB = context;
 }
コード例 #5
0
 public ReturnController(VideoDBContext context)
 {
     _context = context;
 }
コード例 #6
0
 public SqlVideoData(VideoDBContext db)
 {
     _db = db;
 }
コード例 #7
0
 public CustomerController(VideoDBContext context)
 {
     _context = context;
 }
コード例 #8
0
 public MovieService(VideoDBContext context)
 {
     _context = context;
 }