feat: implement Excel export functionality for monthly timesheets with template support
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
parent
0d5b48b891
commit
e872fe200b
13 changed files with 584 additions and 0 deletions
8
Services/Exports/IMonthlyTimesheetExcelExporter.cs
Normal file
8
Services/Exports/IMonthlyTimesheetExcelExporter.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using WorkTracker.Domain;
|
||||
|
||||
namespace WorkTracker.Services.Exports;
|
||||
|
||||
public interface IMonthlyTimesheetExcelExporter
|
||||
{
|
||||
byte[] Export(MonthlyTimesheetModel timesheet, Stream templateStream);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue