Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public GenreController(IGetGenreCommand getGenres, IGetOneGenreCommand getOneGenre, ICreateGenreCommand createGenre, IDeleteGenreCommand deleteGenre, IUpdateGenreCommand updateGenre)
 {
     _getGenres   = getGenres;
     _getOneGenre = getOneGenre;
     _createGenre = createGenre;
     _deleteGenre = deleteGenre;
     _updateGenre = updateGenre;
 }
Exemplo n.º 3
0
 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;
 }