Sky.Net/Core/Specifications/OrderByPaymentIntentIdWithItemsSpecification.cs
2022-05-31 11:38:23 -07:00

11 lines
307 B
C#

using Core.Entities.OrderAggregate;
namespace Core.Specifications
{
public class OrderByPaymentIntentIdSpecification : BaseSpecification<Order>
{
public OrderByPaymentIntentIdSpecification(string paymentIntentId) : base(o => o.PaymentIntentId == paymentIntentId)
{
}
}
}