MES-ETL/ConsoleApp2/HostedServices/Abstractions/IDataReader.cs

15 lines
306 B
C#
Raw Normal View History

2024-01-12 16:50:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp2.HostedServices.Abstractions
{
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
}
}