Exemplo n.º 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;
 }
Exemplo n.º 3
0
        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;
        }
Exemplo n.º 4
0
 public PerfumeImageSmallTagHelper(IImageApiService imageApiService)
 {
     _imageApiService = imageApiService;
 }
Exemplo n.º 5
0
 public ImageTagHelper(IImageApiService imageApiService)
 {
     _imageApiService = imageApiService;
 }
Exemplo n.º 6
0
 public ImageProcessor(IImageApiService apiService)
 {
     _apiService = apiService;
 }
Exemplo n.º 7
0
 public ImageController(IImageApiService imageService)
 {
     _imageService = imageService;
 }
Exemplo n.º 8
0
 public ImageTagHelper(IImageApiService service)
 {
     _service = service;
 }
Exemplo n.º 9
0
 public ImageSearch(IImageApiService imageService)
 {
     _imageService = imageService;
 }