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