SomebodyService.cs 422 B

123456789101112131415161718
  1. using MECF.Framework.Common.Equipment;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Common.WcfService
  8. {
  9. public class SomebodyService : IService
  10. {
  11. public string GetSomebodyName(ModuleName module, string SomebodyName)
  12. {
  13. return $"U Send module:{module} and the Name is {SomebodyName}";
  14. }
  15. }
  16. }