Beispiel #1
0
 public IReportBuilder <T> WithHelpersFromResource(string resourceName, Assembly assembly)
 {
     return(WithHelpers(ContentFinder.GetFromResource(resourceName, assembly)));
 }
Beispiel #2
0
 public IReportBuilder <T> WithCssFromFileSystem(string cssPath)
 {
     return(WithCss(ContentFinder.GetFromFileSystem(cssPath)));
 }
Beispiel #3
0
 public IReportBuilder <T> WithHelpersFromFileSystem(string helperFilePath)
 {
     return(WithHelpers(ContentFinder.GetFromFileSystem(helperFilePath)));
 }
Beispiel #4
0
 public IReportBuilder <T> WithTemplateFromFileSystem(string templatePath)
 {
     return(WithTemplate(ContentFinder.GetFromFileSystem(templatePath)));
 }