* the batch don't expose any format consideration for the log file * a generated project controller, mostly to get a DbSet from db context
13 lines
271 B
C#
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; }
|
|
}
|
|
} |