Files
yavsc/Yavsc.Abstract/Interfaces/IBatch.cs
Paul Schneider e95872e161 [WIP/IT] Batch interface & project controller
* the batch don't expose any format consideration for the log file
* a generated project controller, mostly to get a DbSet from db context
2018-06-22 17:52:24 +02:00

13 lines
271 B
C#

using System;
namespace Yavsc.Abstract.Interfaces
{
public interface IBatch<TInput, TOutput>
{
string WorkingDir { get; set; }
Action<TOutput> ResultHandler { get; }
void Launch(TInput Input);
string LogPath { get; set; }
}
}