using System.Collections.Generic; namespace Aitex.RT.FactoryAutomation { public interface IHostCallback { string GetSvidValue(string svName); List GetListSvidValue(string svName); bool Start(out string reason); bool Pause(out string reason); bool Resume(out string reason); bool Abort(out string reason); bool RunRecipe(string lotId, string jobId, string recipeName , out string reason); } }