36 рядки
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			36 рядки
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
// ********************************************************************************
 | 
						|
// 	文件名字: Command.S1F13
 | 
						|
// 	文件描述: Command.S1F13
 | 
						|
// 	开发人员: Michael
 | 
						|
// 	创建时间: 2019/11/8 0:08
 | 
						|
//
 | 
						|
// 	更新历史:
 | 
						|
// 			+ 创建 Command.S1F13.cs 文件. by Michael @2019/11/8 0:08
 | 
						|
// ********************************************************************************
 | 
						|
using ARI.EAP.HOST;
 | 
						|
using Glorysoft.SECS.EQP.Utilities;
 | 
						|
using System;
 | 
						|
using System.Windows.Forms;
 | 
						|
 | 
						|
namespace Glorysoft.SECS.EQP.Commands
 | 
						|
{
 | 
						|
    public static partial class Command
 | 
						|
    {
 | 
						|
        public static void S5F5Command(object tag = null)
 | 
						|
        {
 | 
						|
            try
 | 
						|
            {
 | 
						|
                var trans = SimulatorInfo.Instance.Context?.GetTransaction(5, 5, "S5F5");
 | 
						|
                trans.Tag = tag;
 | 
						|
 | 
						|
                SimulatorInfo.Instance.Context?.SendMessage(trans);
 | 
						|
                Global.MF.addlog(trans, LoggerService.Send, trans.Primary.Description, 0);
 | 
						|
                LoggerService.SECSLogger.Info(trans.Primary);
 | 
						|
            }
 | 
						|
            catch(Exception e)
 | 
						|
            {
 | 
						|
                LoggerService.SYSLogger.Error(e);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |