using Aitex.Core.Util; using athosRT.Devices.EFEM.ABS; using athosRT.Modules; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace athosRT.Devices.EFEM.Task { public class QueryErrorTask : CheckImp, ITask { public bool Execute(out string result, params string[] args) => this.Check("System", out result); public bool? Monitor(out string result, params string[] args) { result = string.Empty; if (Singleton.Instance.IsError) result = "INTERNAL/UNDEFINITION"; return new bool?(true); } } }