12 lines
307 B
C#
12 lines
307 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LeafWeb.Core.Remote
|
|
{
|
|
public interface IPiscalClient
|
|
{
|
|
void SubmitLeafInputFile(PiscalLeafInputFile file);
|
|
PiscalStatus GetLeafInputStatus(PiscalLeafInputFile file);
|
|
IEnumerable<PiscalLeafOutputFile> RetrieveLeafOutput(PiscalLeafInputFile file);
|
|
}
|
|
}
|