forked from ddrilling/AsbCloudServer
XLExtentions методы расширения для назначения и форматирования значений; SheetBlockAbstract для блоков рапорта;
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);
|
|
|
|
}
|
|
}
|