forked from ddrilling/AsbCloudServer
14 lines
344 B
C#
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
|
|
}
|