MES-ETL/MesETL.App/HostedServices/Abstractions/IDataReader.cs

9 lines
188 B
C#
Raw Normal View History

namespace MesETL.App.HostedServices.Abstractions
2024-01-12 16:50:37 +08:00
{
2024-01-29 09:29:16 +08:00
public interface IDataReader : IDisposable
2024-01-12 16:50:37 +08:00
{
2024-01-29 09:29:16 +08:00
DataRecord Current { get; }
ValueTask<bool> ReadAsync();
2024-01-12 16:50:37 +08:00
}
}