Exemplo n.º 1
0
        public ExcelReader(ConsoleWatch watch, ExcelCOMs excelCOMs, string folderPath, string extensionPattern)
        {
            this.watch            = watch;
            this.watch.ProgramId  = this.GetType().Name;
            this.excelCOMs        = excelCOMs;
            this.folderPath       = folderPath;
            this.extensionPattern = extensionPattern;

            this.filePaths  = new List <string>();
            this.ExcelSheet = new ExcelSheet <Transaction>();
        }
Exemplo n.º 2
0
 public ExcelWriter(ConsoleWatch watch, ExcelCOMs excelCOMs)
 {
     this.watch           = watch;
     this.watch.ProgramId = this.GetType().Name;
     this.excelCOMs       = excelCOMs;
 }
Exemplo n.º 3
0
 public ExcelWorker()
 {
     this.excelCOMs = new ExcelCOMs();
 }