public FileLauncher(IFileSystem fileSystem, IExcelWrapper excelWrapper)
 {
     this.fileSystem = fileSystem;
     this.excelWrapper = excelWrapper;
 }
Exemplo n.º 2
0
 public ExcelService(IExcelWrapper excelPackage)
 {
     _excelPackage = excelPackage ?? throw new ArgumentNullException(nameof(excelPackage));
 }
Exemplo n.º 3
0
 public FileLauncher(IFileSystem fileSystem, IExcelWrapper excelWrapper)
 {
     this.fileSystem   = fileSystem;
     this.excelWrapper = excelWrapper;
 }