11 lines
202 B
C#
11 lines
202 B
C#
namespace Seyounth.Hyosung.Data.Services;
|
|
|
|
public interface IReportExportService
|
|
{
|
|
Task ExportAsync(string trayCode);
|
|
|
|
|
|
Task ExportNoExportAsync();
|
|
|
|
Task ExportTodayTotalReportAsync();
|
|
} |