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>(); }
public ConfirmDeleteModel(IMovieQueryService queryService, IMovieCommandService commandService) { this.queryService = queryService; this.commandService = commandService; }