Files
LeafWeb/Core/Remote/IPiscalClient.cs
T
poprhythm 9e710effc1 Umbraco update
Error email updates
Piscal communication error handling
Empty page for terms of service
2017-01-04 08:49:36 -05:00

14 lines
380 B
C#

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