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

6 lines
159 B
C#

namespace MesETL.App.HostedServices.Abstractions;
public interface ITransformService
{
public Task ExecuteAsync(CancellationToken cancellationToken);
}