示例#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;
 }
示例#2
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;
 }
示例#3
0
 public GenresService(IAddGenreCommand addGenreCommand,
                      IUpdateGenreCommand updateGenreCommand,
                      IListAllGenresQuery listAllGenresQuery,
                      IGenreSelectListQuery genreSelectListQuery)
 {
     _addGenreCommand      = addGenreCommand;
     _updateGenreCommand   = updateGenreCommand;
     _listAllGenresQuery   = listAllGenresQuery;
     _genreSelectListQuery = genreSelectListQuery;
 }