11 lines
307 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |