12 changed files with 106 additions and 13 deletions
@ -0,0 +1,12 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace EShopOnAbp.OrderingService.OrderItems |
|||
{ |
|||
public class TopSellingDto : EntityDto<Guid> |
|||
{ |
|||
public string ProductName { get; set; } |
|||
public string PictureUrl { get; set; } |
|||
public int Units { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,7 @@ |
|||
namespace EShopOnAbp.OrderingService.OrderItems |
|||
{ |
|||
public class TopSellingInput |
|||
{ |
|||
public string Filter { get; set; } |
|||
} |
|||
} |
|||
@ -1,7 +1,8 @@ |
|||
namespace EShopOnAbp.OrderingService |
|||
{ |
|||
public class OrderingServiceRemoteServiceConsts |
|||
public static class OrderingServiceRemoteServiceConsts |
|||
{ |
|||
public const string RemoteServiceName = "Ordering"; |
|||
public const int Top10 = 10; |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue