项目重命名
This commit is contained in:
14
MesETL.App/HostedServices/Abstractions/IDataReader.cs
Normal file
14
MesETL.App/HostedServices/Abstractions/IDataReader.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConsoleApp2.HostedServices.Abstractions
|
||||
{
|
||||
public interface IDataReader : IDisposable
|
||||
{
|
||||
DataRecord Current { get; }
|
||||
ValueTask<bool> ReadAsync();
|
||||
}
|
||||
}
|
9
MesETL.App/HostedServices/Abstractions/IInputService.cs
Normal file
9
MesETL.App/HostedServices/Abstractions/IInputService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using ConsoleApp2.Options;
|
||||
using ConsoleApp2.Services;
|
||||
|
||||
namespace ConsoleApp2.HostedServices.Abstractions;
|
||||
|
||||
public interface IInputService
|
||||
{
|
||||
public Task ExecuteAsync(CancellationToken cancellationToken);
|
||||
}
|
9
MesETL.App/HostedServices/Abstractions/IOutputService.cs
Normal file
9
MesETL.App/HostedServices/Abstractions/IOutputService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using ConsoleApp2.Options;
|
||||
using ConsoleApp2.Services;
|
||||
|
||||
namespace ConsoleApp2.HostedServices.Abstractions;
|
||||
|
||||
public interface IOutputService
|
||||
{
|
||||
public Task ExecuteAsync(CancellationToken ct);
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
using ConsoleApp2.Options;
|
||||
using ConsoleApp2.Services;
|
||||
|
||||
namespace ConsoleApp2.HostedServices.Abstractions;
|
||||
|
||||
public interface ITransformService
|
||||
{
|
||||
public Task ExecuteAsync(CancellationToken cancellationToken);
|
||||
}
|
Reference in New Issue
Block a user