TestService.cs 562 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XdCxRhDW.WebApi.Service
  7. {
  8. /// <summary>
  9. /// 测试Service
  10. /// </summary>
  11. public class TestService
  12. {
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public TestService()
  17. {
  18. int code = this.GetHashCode();
  19. }
  20. /// <summary>
  21. /// 测试
  22. /// </summary>
  23. public void Test()
  24. {
  25. int code = this.GetHashCode();
  26. }
  27. }
  28. }