public static void Write(SubFlows subFlows, string location) { if (!subFlows.IsEmpty()) { string fileName = string.Format(@"{0}\{1}-{2}.html", location, "Report", subFlows.FlowName); File.WriteAllText(fileName, HtmlGenerator.GenerateReport(subFlows)); } }
public SessionReport(string archiveLocation, string name) { subFlows = new SubFlows(archiveLocation, name); }