using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Reports.Common { public abstract class ReportSection { public virtual string Title { get { return "dummy section"; } } public abstract void Render(); } }