WorkTracker/Services/Exports/IMonthlyTimesheetExcelExporter.cs
2026-04-24 10:45:44 +02:00

8 lines
No EOL
194 B
C#

using WorkTracker.Domain;
namespace WorkTracker.Services.Exports;
public interface IMonthlyTimesheetExcelExporter
{
byte[] Export(MonthlyTimesheetModel timesheet, Stream templateStream);
}