11 lines
325 B
C#
11 lines
325 B
C#
|
using Core.Entities.OrderAggregate;
|
||
|
|
||
|
namespace Core.Specifications
|
||
|
{
|
||
|
public class OrderByPaymentIntentIdWithItemsSpecification : BaseSpecification<Order>
|
||
|
{
|
||
|
public OrderByPaymentIntentIdWithItemsSpecification(string paymentIntentId) : base(o => o.PaymentIntentId == paymentIntentId)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|