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

14 lines
344 B
C#
Raw Normal View History

using ClosedXML.Excel;
namespace AsbCloudInfrastructure.Services.DailyReport
{
2023-04-13 11:15:45 +05:00
#nullable enable
abstract class BlockAbstract
{
public abstract CellAddress AddressBlockBegin { get; }
public abstract CellAddress AddressBlockEnd { get; }
public abstract void Draw(IXLWorksheet sheet);
}
2023-04-13 11:15:45 +05:00
#nullable disable
}