Browse Source

Disable OrderAppService.UpdateAsync method

pull/87/head
gdlcf88 6 years ago
parent
commit
31be5b3cc7
  1. 6
      modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application/EasyAbp/EShop/Orders/Orders/OrderAppService.cs

6
modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application/EasyAbp/EShop/Orders/Orders/OrderAppService.cs

@ -127,6 +127,12 @@ namespace EasyAbp.EShop.Orders.Orders
return dict;
}
[RemoteService(false)]
public override Task<OrderDto> UpdateAsync(Guid id, CreateOrderDto input)
{
throw new NotSupportedException();
}
[RemoteService(false)]
public override Task DeleteAsync(Guid id)
{

Loading…
Cancel
Save