using Aitex.Core.RT.Routine; using Aitex.Sorter.Common; using MECF.Framework.Common.Equipment; namespace EFEM.RT.Routines { public interface IEfemPlaceRoutine : IRoutine { Result Start(params object[] objs); Result Monitor(); bool Initalize(); void Abort(); ModuleName Station { get; set; } int Slot { get; set; } Hand Blade { get; set; } } }