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