123456789101112131415161718192021 |
- using Ant.Core.WebApi.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Central.Control.WebApi.Service.Interface
- {
- /// <summary>
- ///
- /// </summary>
- public interface IProductService
- {
- /// <summary>
- ///
- /// </summary>
- /// <returns></returns>
- ApiResult<string> Test();
- }
- }
|