示例#1
0
 public SearchModel(ITvProgramService tvProgramService,
                    ICornerService cornerService,
                    IVideoSourceService videoSourceService,
                    IArticleSourceService articleSourceService,
                    ISpecificationViewModelService specificationViewModelService)
 {
     _tvProgramService              = tvProgramService;
     _cornerService                 = cornerService;
     _videoSourceService            = videoSourceService;
     _articleSourceService          = articleSourceService;
     _specificationViewModelService = specificationViewModelService;
 }
示例#2
0
 public SpecificationViewModelService(
     IMapper mapper,
     ISpecificationService specificationService,
     ICategoryService categoryService,
     IVideoSourceService videoSourceService,
     IArticleSourceService articleSourceService)
 {
     _mapper = mapper;
     _specificationService = specificationService;
     _categoryService      = categoryService;
     _videoSourceService   = videoSourceService;
     _articleSourceService = articleSourceService;
 }