forked from ddrilling/AsbCloudServer
12 lines
232 B
C#
12 lines
232 B
C#
|
using ClosedXML.Excel;
|
|||
|
|
|||
|
namespace AsbCloudInfrastructure.Services.DailyReport
|
|||
|
{
|
|||
|
|
|||
|
internal abstract class SheetBlockAbstract
|
|||
|
{
|
|||
|
public abstract CellAddress Draw(IXLWorksheet sheet, CellAddress startPoint);
|
|||
|
|
|||
|
}
|
|||
|
}
|