Ejemplo n.º 1
0
 public ListService(FilmHausDbContext filmHausDbContext, IListFilmService listFilmService, IListShowService listShowService)
 {
     FilmHausDbContext = filmHausDbContext;
     ListShowService   = listShowService;
     ListFilmService   = listFilmService;
 }
Ejemplo n.º 2
0
 public ListsController(IListService listService, IListFilmService listFilmService, IListShowService listShowService)
 {
     ListService     = listService;
     ListFilmService = listFilmService;
     ListShowService = listShowService;
 }