using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XKRS.Common.Interface
{
public interface IProcess:ILogger,IExceptionHandler
{
///
/// 流程使用的硬件设备集合
///
List DeviceCollection { get; set; }
///
/// 初始化Process
///
///
void InitialProcess(string configPath);
}
}