forked from ddrilling/AsbCloudServer
9 lines
281 B
C#
9 lines
281 B
C#
|
using AsbCloudApp.Data.AutogeneratedDailyReport;
|
||
|
using ClosedXML.Excel;
|
||
|
|
||
|
namespace AsbCloudInfrastructure.Services.AutoGeneratedDailyReports.AutogeneratedDailyReportBlocks;
|
||
|
|
||
|
public interface IExcelBlockWriter
|
||
|
{
|
||
|
void Write(IXLWorksheet sheet, AutoGeneratedDailyReportDto report);
|
||
|
}
|