2025-03-27 11:48:28 +08:00

13 lines
252 B
C#

namespace Seyounth.Hyosung.Data.Services;
public interface IReportExportService
{
Task ExportAsync(string trayCode);
Task ExportSampleAsync(string trayCode);
Task ExportNoExportAsync();
Task ExportTodayTotalReportAsync();
}