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.
51 lines
1.8 KiB
51 lines
1.8 KiB
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Http.Client;
|
|
using Volo.Abp.Http.Modeling;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Http.Client.ClientProxying;
|
|
using EShopOnAbp.OrderingService.Orders;
|
|
using System.Collections.Generic;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace EShopOnAbp.OrderingService.Orders.ClientProxies
|
|
{
|
|
[Dependency(ReplaceServices = true)]
|
|
[ExposeServices(typeof(IOrderAppService), typeof(OrderClientProxy))]
|
|
public partial class OrderClientProxy : ClientProxyBase<IOrderAppService>, IOrderAppService
|
|
{
|
|
public virtual async Task<OrderDto> GetAsync(Guid id)
|
|
{
|
|
return await RequestAsync<OrderDto>(nameof(GetAsync), new ClientProxyRequestTypeValue
|
|
{
|
|
{ typeof(Guid), id }
|
|
});
|
|
}
|
|
|
|
public virtual async Task<List<OrderDto>> GetMyOrdersAsync(GetMyOrdersInput input)
|
|
{
|
|
return await RequestAsync<List<OrderDto>>(nameof(GetMyOrdersAsync), new ClientProxyRequestTypeValue
|
|
{
|
|
{ typeof(GetMyOrdersInput), input }
|
|
});
|
|
}
|
|
|
|
public virtual async Task<OrderDto> GetByOrderNoAsync(int orderNo)
|
|
{
|
|
return await RequestAsync<OrderDto>(nameof(GetByOrderNoAsync), new ClientProxyRequestTypeValue
|
|
{
|
|
{ typeof(int), orderNo }
|
|
});
|
|
}
|
|
|
|
public virtual async Task<OrderDto> CreateAsync(OrderCreateDto input)
|
|
{
|
|
return await RequestAsync<OrderDto>(nameof(CreateAsync), new ClientProxyRequestTypeValue
|
|
{
|
|
{ typeof(OrderCreateDto), input }
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|