Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilLord666 authored Apr 22, 2018
1 parent 7166275 commit b8338e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ For all functionality were written Unit tests with xUnit (sucks), full example c
// executing extraction ...
object[] parameters = ExcelReportGeneratorHelper.CreateParameters(1, 2, 3);
IReportGeneratorManager manager = new ExcelReportGeneratorManager(Server, TestDatabase);
Task<bool> result = manager.Generate(TestExcelTemplate, DataExecutionConfig, ReportFile, parameters);
Task<bool> result = manager.GenerateAsync(TestExcelTemplate, DataExecutionConfig, ReportFile, parameters);
result.Wait();
Assert.True(result.Result);
TearDownTestData();
Expand Down Expand Up @@ -178,5 +178,7 @@ For all functionality were written Unit tests with xUnit (sucks), full example c
}
}
`
!!!! THERE IS ONE MORE option : to pass ExecutionConfig like a valiable instead of path to file (see IReportGeneratorManager interface)

# 3 Nuget Package
Nuget package is available on nuget.org : https://www.nuget.org/packages/ReportsGenerator/

0 comments on commit b8338e7

Please sign in to comment.