Sky.Net/Core/Specifications/OrderByPaymentIntentIdWithItemsSpecification.cs
2022-05-30 13:25:27 -07:00

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)
{
}
}
}