DeviceManager/TsSFCDevice.Client.Biz/Common.cs
2024-07-22 15:50:10 +08:00

13 lines
239 B
C#

using TsSFCDevice.Client.Biz.Base.Utils;
namespace TsSFCDevice.Client.Biz
{
public class Common
{
public string HelloWorld()
{
return Utility.SfcBizService.CurrentSvc.HelloWorld();
}
}
}