|
|
@ -199,14 +199,14 @@ namespace EasyAbp.EShop.Products.Products |
|
|
[RemoteService(false)] |
|
|
[RemoteService(false)] |
|
|
public override Task DeleteAsync(Guid id) |
|
|
public override Task DeleteAsync(Guid id) |
|
|
{ |
|
|
{ |
|
|
throw new NotImplementedException(); |
|
|
throw new NotSupportedException(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
[Obsolete("Should use GetAsync(Guid id, Guid storeId)")] |
|
|
[Obsolete("Should use GetAsync(Guid id, Guid storeId)")] |
|
|
[RemoteService(false)] |
|
|
[RemoteService(false)] |
|
|
public override Task<ProductDto> GetAsync(Guid id) |
|
|
public override Task<ProductDto> GetAsync(Guid id) |
|
|
{ |
|
|
{ |
|
|
throw new NotImplementedException(); |
|
|
throw new NotSupportedException(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public virtual async Task<ProductDto> GetAsync(Guid id, Guid storeId) |
|
|
public virtual async Task<ProductDto> GetAsync(Guid id, Guid storeId) |
|
|
|