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