public DetailedViewController(
     IDefectApiService defectService,
     IMapper mapper)
 {
     _defectService = defectService;
     _mapper        = mapper;
 }
Esempio n. 2
0
 public DefectChangeLogController(IDefectChangeLogService defectChangeLogService, IMapper mapper, IFilterService filterService, IDefectApiService defectService)
 {
     _defectChangeLogService = defectChangeLogService;
     _mapper        = mapper;
     _filterService = filterService;
     _defectService = defectService;
 }
Esempio n. 3
0
 public BreadcrumbController(IDefectApiService defectApiService, ISiteService siteService,
                             ITurbineService turbineService, IBladeService bladeService, IMapper mapper)
 {
     _siteService    = siteService;
     _turbineService = turbineService;
     _bladeService   = bladeService;
     _defectService  = defectApiService;
     _mapper         = mapper;
 }
Esempio n. 4
0
 public SummaryViewController(
     IBladeService bladeService,
     IDefectApiService defectService,
     IMapper mapper)
 {
     _bladeService  = bladeService;
     _defectService = defectService;
     _mapper        = mapper;
 }
 public DashboardController(ISiteService siteService, IBladeService bladeService, IReportService reportService,
                            IDefectApiService defectService, IDeepZoomLinkService deepZoomLinkService, ITurbineService turbineService)
 {
     _siteService         = siteService;
     _bladeService        = bladeService;
     _reportService       = reportService;
     _defectService       = defectService;
     _deepZoomLinkService = deepZoomLinkService;
     _turbineService      = turbineService;
 }
        public DefectGroupActionsController(
            IDefectApiService defectService,
            IMapper mapper,
            IFilterService filterService)

        {
            _defectService = defectService;
            _mapper        = mapper;
            _filterService = filterService;
        }
Esempio n. 7
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;
 }
Esempio n. 8
0
 public ReportGeneratorController(
     IReportGeneratorManagerApiService reportGeneratorManagerService,
     IDefectApiService defectService,
     IDeepZoomLinkService deepZoomLinkService,
     IMapper mapper,
     IBladeService bladeService)
 {
     _defectService       = defectService;
     _deepZoomLinkService = deepZoomLinkService;
     _mapper       = mapper;
     _bladeService = bladeService;
     _reportGeneratorManagerService = reportGeneratorManagerService;
 }
 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;
 }
Esempio n. 10
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;
        }
Esempio n. 11
0
 public BladeController(IBladeService bladeService, IDefectApiService defectApiService, IMapper mapper)
 {
     _defectApiService = defectApiService;
     _bladeService     = bladeService;
     _mapper           = mapper;
 }
Esempio n. 12
0
 public TagsController(IMapper mapper, ITagApiService tagApiService, IDefectApiService defectApiService)
 {
     _mapper           = mapper;
     _tagApiService    = tagApiService;
     _defectApiService = defectApiService;
 }