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