feat: implement Excel export functionality for monthly timesheets with template support

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Marco 2026-04-24 10:45:44 +02:00
commit e872fe200b
13 changed files with 584 additions and 0 deletions

View file

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