WorkTracker/Services/Exports/IMonthlyTimesheetExcelExporter.cs

8 lines
194 B
C#
Raw Normal View History

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