public ListService(FilmHausDbContext filmHausDbContext, IListFilmService listFilmService, IListShowService listShowService) { FilmHausDbContext = filmHausDbContext; ListShowService = listShowService; ListFilmService = listFilmService; }
public ListsController(IListService listService, IListFilmService listFilmService, IListShowService listShowService) { ListService = listService; ListFilmService = listFilmService; ListShowService = listShowService; }