Files
DMS/DMS.Infrastructure/Interfaces/Services/IS7ServiceFactory.cs

16 lines
406 B
C#
Raw Normal View History

2025-09-05 15:59:14 +08:00
using DMS.Infrastructure.Interfaces.Services;
namespace DMS.Infrastructure.Interfaces.Services
{
/// <summary>
/// S7服务工厂接口用于创建S7Service实例
/// </summary>
public interface IS7ServiceFactory
{
/// <summary>
/// 创建S7服务实例
/// </summary>
/// <returns>S7服务实例</returns>
IS7Service CreateService();
}
}