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

16 lines
406 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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();
}
}