IProductService.cs 423 B

123456789101112131415161718192021
  1. using Ant.Core.WebApi.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Central.Control.WebApi.Service.Interface
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. public interface IProductService
  13. {
  14. /// <summary>
  15. ///
  16. /// </summary>
  17. /// <returns></returns>
  18. ApiResult<string> Test();
  19. }
  20. }