9 lines
157 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);
Task ExportNoExportAsync();
}