DeviceManager/TsSFCDevice.Client.Biz/Common.cs

13 lines
239 B
C#
Raw Normal View History

2024-07-22 07:50:10 +00:00
using TsSFCDevice.Client.Biz.Base.Utils;
namespace TsSFCDevice.Client.Biz
{
public class Common
{
public string HelloWorld()
{
return Utility.SfcBizService.CurrentSvc.HelloWorld();
}
}
}