public RatedsController(IGetRatedsCommand getRateds, IGetRatedCommand getRated, IAddRatedCommand addRated, IEditRatedCommand editRated, IDeleteRatedCommand deleteRated) { this.getRateds = getRateds; this.getRated = getRated; this.addRated = addRated; this.editRated = editRated; this.deleteRated = deleteRated; }
public RatedsController(IGetRatedsCommand getRateds, IGetRatedCommand getRated, IAddRatedCommand addRated, IEditRatedCommand editRated, IDeleteRatedCommand deleteRated, UseCaseExecutor executor) { this.getRateds = getRateds; this.getRated = getRated; this.addRated = addRated; this.editRated = editRated; this.deleteRated = deleteRated; this.executor = executor; }
public MoviesController(IGetMoviesCommand getMovies, IGetMovieCommand getMovie, IAddMovieCommand addMovie, IEditMovieCommand editMovie, IDeleteMovieCommand deleteMovie, IGetGenresCommand getGenres, IGetActorsCommand getActors, IGetLanguagesCommand getLanguages, IGetWritersCommand getWriters, IGetProductionsCommand getProductions, IGetCountriesCommand getCountries, IGetRatedsCommand getRateds, UseCaseExecutor executor, IActivateMovieCommand activateMovie) { this.getMovies = getMovies; this.getMovie = getMovie; this.addMovie = addMovie; this.editMovie = editMovie; this.deleteMovie = deleteMovie; this.getGenres = getGenres; this.getActors = getActors; this.getLanguages = getLanguages; this.getWriters = getWriters; this.getProductions = getProductions; this.getCountries = getCountries; this.getRateds = getRateds; this.executor = executor; this.activateMovie = activateMovie; }