13 lines
252 B
C#
Raw Normal View History

2025-03-23 16:41:41 +08:00
namespace Seyounth.Hyosung.Data.Services;
public interface IReportExportService
{
Task ExportAsync(string trayCode);
2025-03-27 11:48:28 +08:00
Task ExportSampleAsync(string trayCode);
2025-03-23 16:41:41 +08:00
Task ExportNoExportAsync();
2025-03-24 16:57:38 +08:00
Task ExportTodayTotalReportAsync();
2025-03-23 16:41:41 +08:00
}