|
|
|
@ -1,5 +1,8 @@ |
|
|
|
using EShopOnAbp.PaymentService.EntityFrameworkCore; |
|
|
|
using Microsoft.EntityFrameworkCore; |
|
|
|
using System; |
|
|
|
using System.Linq; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Volo.Abp.DependencyInjection; |
|
|
|
using Volo.Abp.Domain.Repositories.EntityFrameworkCore; |
|
|
|
using Volo.Abp.EntityFrameworkCore; |
|
|
|
@ -18,5 +21,11 @@ namespace EShopOnAbp.PaymentService.PaymentRequests |
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public override async Task<IQueryable<PaymentRequest>> WithDetailsAsync() |
|
|
|
{ |
|
|
|
return (await base.WithDetailsAsync()) |
|
|
|
.Include(p => p.Products); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|