コード例 #1
0
 public HomeController(IAlquilerInterface alqui, IVideosInterface vids)
 {
     alquileres = alqui;
     videos     = vids;
 }
コード例 #2
0
 public AlquilerController(IAlquilerInterface alqui, IVideosInterface vids)
 {
     alquileres     = alqui;
     videos         = vids;
     ViewBag.Videos = videos.obtenerVideos();
 }
コード例 #3
0
 public VideosController(IVideosInterface vids)
 {
     videos = vids;
 }