DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DailyReport/BlockAbstract.cs
2023-04-13 11:15:45 +05:00

14 lines
344 B
C#

using ClosedXML.Excel;
namespace AsbCloudInfrastructure.Services.DailyReport
{
#nullable enable
abstract class BlockAbstract
{
public abstract CellAddress AddressBlockBegin { get; }
public abstract CellAddress AddressBlockEnd { get; }
public abstract void Draw(IXLWorksheet sheet);
}
#nullable disable
}