This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
thesis-src/ReportGeneration/ReportGeneration.Interface/ITableGenerator.cs
T
Simon Gruber b17044f959 Cleanup
2024-01-08 16:21:10 +01:00

16 lines
498 B
C#

using System.Collections.Generic;
namespace ReportGeneration.Interface;
public interface ITableGenerator : IStreamWriter
{
int Columns { get; }
ITableGenerator AppendHeader(string content);
ITableGenerator AppendHeader(IEnumerable<string> row);
ITableGenerator AppendHeader(IEnumerable<IEnumerable<string>> rows);
ITableGenerator AppendRow(string content);
ITableGenerator AppendRow(IEnumerable<string> row);
ITableGenerator AppendRows(IEnumerable<IEnumerable<string>> rows);
}