Exemplo n.º 1
0
 public MovieInfoController(
     ILogger <MovieInfoController> logger,
     IMovieQueryService movieQueryService,
     IDataService dataService
     )
 {
     _logger            = logger;
     _movieQueryService = movieQueryService;
     _dataService       = dataService;
 }
Exemplo n.º 2
0
        public AddEditMovieModel(IMovieQueryService queryService,
                                 IMovieCommandService commandService,
                                 IHtmlHelper htmlHelper)
        {
            this.queryService   = queryService;
            this.commandService = commandService;
            this.htmlHelper     = htmlHelper;

            Genres    = htmlHelper.GetEnumSelectList <Genre>();
            Languages = htmlHelper.GetEnumSelectList <Language>();
        }
Exemplo n.º 3
0
 public ViewMovieModel(IMovieQueryService queryService,
                       ILogger <DebugLoggerProvider> loggerDebug)
 {
     this.queryService = queryService;
     this.loggerDebug  = loggerDebug;
 }
Exemplo n.º 4
0
 public AssociatePrincipalModel(IMovieQueryService queryService)
 {
     this.queryService = queryService;
 }
Exemplo n.º 5
0
 public ConfirmDeleteModel(IMovieQueryService queryService,
                           IMovieCommandService commandService)
 {
     this.queryService   = queryService;
     this.commandService = commandService;
 }
Exemplo n.º 6
0
 public MoviesController(ICommandBus commandBus, IMovieQueryService movieQueryService)
 {
     _commandBus        = commandBus;
     _movieQueryService = movieQueryService;
 }
 public ValuesController(IMovieQueryService service)
 {
     this.service = service;
 }
Exemplo n.º 8
0
 public ListMoviesModel(IMovieQueryService movieQueryService)
 {
     this.movieQueryService = movieQueryService;
 }
Exemplo n.º 9
0
 public ListMoviesHandler(IMovieQueryService service) : base(service)
 {
 }