Files
LeafWeb/Core/Remote/IPiscalClient.cs
T
2016-04-06 13:00:26 -04:00

13 lines
357 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);
}
}