12345678910111213141516171819202122232425262728 |
- using System.Threading.Tasks;
- using Aop.Api.Request;
- using System.Threading;
- namespace Aop.Api
- {
-
-
-
- public interface IAopClient
- {
-
-
-
-
-
-
- Task<T> Execute<T>(IAopRequest<T> request) where T : AopResponse;
-
-
-
-
-
-
-
- Task<T> Execute<T>(IAopRequest<T> request, string session) where T : AopResponse;
- }
- }
|