Sky.Net/Core/Specifications/OrderByPaymentIntentIdWithItemsSpecification.cs

11 lines
325 B
C#
Raw Normal View History

2022-05-30 13:25:27 -07:00
using Core.Entities.OrderAggregate;
namespace Core.Specifications
{
public class OrderByPaymentIntentIdWithItemsSpecification : BaseSpecification<Order>
{
public OrderByPaymentIntentIdWithItemsSpecification(string paymentIntentId) : base(o => o.PaymentIntentId == paymentIntentId)
{
}
}
}