Files
LeafWeb/Core/Remote/IPiscalClient.cs
T

14 lines
410 B
C#

using System.Collections.Generic;
namespace LeafWeb.Core.Remote
{
public interface IPiscalClient
{
void RunLeafInput(PiscalLeafInput leafInput);
PiscalStatus GetLeafInputStatus(PiscalLeafInput leafInput);
IEnumerable<PiscalLeafOutputFile> RetrieveLeafOutput(PiscalLeafInput leafInput);
void CleanupLeafProcess(PiscalLeafInput leafInput);
string GetErrorMessage(PiscalLeafInput leafInput);
}
}