Example #1
0
 public DefectChangeLogController(IDefectChangeLogService defectChangeLogService, IMapper mapper, IFilterService filterService, IDefectApiService defectService)
 {
     _defectChangeLogService = defectChangeLogService;
     _mapper        = mapper;
     _filterService = filterService;
     _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;
        }