123456789101112131415161718 |
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Common.WcfService
- {
- public class SomebodyService : IService
- {
- public string GetSomebodyName(ModuleName module, string SomebodyName)
- {
- return $"U Send module:{module} and the Name is {SomebodyName}";
- }
- }
- }
|