namespace ConsoleApp1.report { public class ReportContent : IReportContent { public string ReportDate { get; set; } public Dictionary Data { get; set; } = new Dictionary(); public List ReportRows { get; set; } = new List(); public void Print(HtmlReportFormatter formatter) { throw new NotImplementedException(); } } }