public EstimatorService(ISettingsService settingsService,
                         IEmailExchangeService emailExchangeService,
                         IParsingService parsingService,
                         IExcelService excelService,
                         IWordService wordService,
                         IPowerPointService presentService,
                         IFileService fileService, IImageService imageService, IZipService zipService)
 {
     _settingsService      = settingsService;
     _emailExchangeService = emailExchangeService;
     _parsingService       = parsingService;
     _excelService         = excelService;
     _wordService          = wordService;
     _presentService       = presentService;
     _fileService          = fileService;
     _imageService         = imageService;
     _zipService           = zipService;
 }
 public PowerPointController(IPowerPointService service)
 {
     _service = service;
 }