public GenresController(IAddGenreCommand addGenre, IGetGenresCommand getGenres, IGetGenreCommand getGenre, IEditGenreCommand editGenre, IDeleteGenreCommand deleteGenre) { this.addGenre = addGenre; this.getGenres = getGenres; this.getGenre = getGenre; this.editGenre = editGenre; this.deleteGenre = deleteGenre; }
public GenresController(IGetGenresCommand getGenres, IGetGenreCommand getGenre, IAddGenreCommand addGenre, IEditGenreCommand editGenre, IDeleteGenreCommand deleteGenre, UseCaseExecutor executor) { this.getGenres = getGenres; this.getGenre = getGenre; this.addGenre = addGenre; this.editGenre = editGenre; this.deleteGenre = deleteGenre; this.executor = executor; }