Example #1
0
 public DeletedItemsController(ISiteService siteService, IBladeService bladeService, IReportService reportService,
                               IDefectApiService defectService, IImageApiService imageService, ITurbineService turbineService)
 {
     _siteService    = siteService;
     _bladeService   = bladeService;
     _reportService  = reportService;
     _defectService  = defectService;
     _imageService   = imageService;
     _turbineService = turbineService;
 }
 public DeepZoomLinkController(IDeepZoomLinkService deepZoomLinkService,
                               IFilterService filterService,
                               IDeepZoomFileService deepZoomFileService,
                               IMapper mapper,
                               IDefectApiService defectService, IImageApiService imageApiService)
 {
     _deepZoomLinkService = deepZoomLinkService;
     _filterService       = filterService;
     _deepZoomFileService = deepZoomFileService;
     _defectService       = defectService;
     _imageApiService     = imageApiService;
     _mapper        = mapper;
     _defectService = defectService;
 }
        public DefectsController(
            IDefectApiService defectService,
            IMapper mapper,
            IImageApiService imageService,
            IFilterService filterService,
            IImportDefectService importDefectService,
            IFileUploadApiService fileUploadService,
            ICustomFilterService customFilterService,
            IDefectChangeLogService defectChangeLogService)

        {
            _defectService          = defectService;
            _mapper                 = mapper;
            _imageService           = imageService;
            _filterService          = filterService;
            _importDefectService    = importDefectService;
            _fileUploadService      = fileUploadService;
            _defectChangeLogService = defectChangeLogService;
            _customFilterService    = customFilterService;
        }
Example #4
0
 public PerfumeImageSmallTagHelper(IImageApiService imageApiService)
 {
     _imageApiService = imageApiService;
 }
 public ImageTagHelper(IImageApiService imageApiService)
 {
     _imageApiService = imageApiService;
 }
 public ImageProcessor(IImageApiService apiService)
 {
     _apiService = apiService;
 }
Example #7
0
 public ImageController(IImageApiService imageService)
 {
     _imageService = imageService;
 }
Example #8
0
 public ImageTagHelper(IImageApiService service)
 {
     _service = service;
 }
Example #9
0
 public ImageSearch(IImageApiService imageService)
 {
     _imageService = imageService;
 }