| 1234567891011121314151617 | using Aitex.Core.Util;using MECF.Framework.Common.OperationCenter;namespace VirgoRT.Modules.Interlocks{    class CheckOnline : IInterlockChecker    {        public bool CanDo(out string reason, object[] args)        {             reason = string.Empty;            return true;        }    }}
 |