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