示例#1
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>();
        }
示例#2
0
 public ConfirmDeleteModel(IMovieQueryService queryService,
                           IMovieCommandService commandService)
 {
     this.queryService   = queryService;
     this.commandService = commandService;
 }