DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DailyReport/SheetBlockAbstract.cs

12 lines
232 B
C#
Raw Normal View History

using ClosedXML.Excel;
namespace AsbCloudInfrastructure.Services.DailyReport
{
internal abstract class SheetBlockAbstract
{
public abstract CellAddress Draw(IXLWorksheet sheet, CellAddress startPoint);
}
}