Example #1
0
 public CsvAggregateReportVisitor(ICsvAggregateReportUpdater <TKey, TValue> visitor, string csvPath)
 {
     _visitor = visitor;
     _csvPath = csvPath;
 }
Example #2
0
 public async Task UpdateAsync <TKey, TValue>(ICsvAggregateReportUpdater <TKey, TValue> visitor)
 {
     await UpdateAsync(visitor.Name, csvPath => new CsvAggregateReportVisitor <TKey, TValue>(visitor, csvPath));
 }