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