mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Volo.Abp.Http.DynamicProxying
|
|
{
|
|
public interface IRegularTestController
|
|
{
|
|
Task<int> IncrementValueAsync(int value);
|
|
|
|
Task GetException1Async();
|
|
|
|
Task<DateTime> GetWithDateTimeParameterAsync(DateTime dateTime1);
|
|
|
|
Task<string> PostValueWithHeaderAndQueryStringAsync(string headerValue, string qsValue);
|
|
|
|
Task<string> PostValueWithBodyAsync(string bodyValue);
|
|
|
|
Task<Car> PostObjectWithBodyAsync(Car bodyValue);
|
|
|
|
Task<Car> PostObjectWithQueryAsync(Car bodyValue);
|
|
|
|
Task<Car> GetObjectWithUrlAsync(Car bodyValue);
|
|
|
|
Task<Car> GetObjectandIdAsync(int id, Car bodyValue);
|
|
|
|
Task<Car> GetObjectAndIdWithQueryAsync(int id, Car bodyValue);
|
|
|
|
Task<string> PutValueWithBodyAsync(string bodyValue);
|
|
|
|
Task<string> PatchValueWithBodyAsync(string bodyValue);
|
|
|
|
Task<string> PutValueWithHeaderAndQueryStringAsync(string headerValue, string qsValue);
|
|
|
|
Task<string> PatchValueWithHeaderAndQueryStringAsync(string headerValue, string qsValue);
|
|
|
|
Task<int> DeleteByIdAsync(int id);
|
|
}
|
|
}
|