Beispiel #1
0
 public MovieController(VideoDBContext context)
 {
     _context = context;
 }
 public HomeController(VideoDBContext context)
 {
     _context = context;
 }
 public RentalRecordController(VideoDBContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public SQLVideoRepository(VideoDBContext context)
 {
     videoDB = context;
 }
Beispiel #5
0
 public ReturnController(VideoDBContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public SqlVideoData(VideoDBContext db)
 {
     _db = db;
 }
 public CustomerController(VideoDBContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public MovieService(VideoDBContext context)
 {
     _context = context;
 }