Files
components/LiteCharms.Features/Shop/Quotes/Queries/GetCustomerQuotesQuery.cs
T
2026-05-13 20:06:24 +02:00

18 lines
503 B
C#

using LiteCharms.Features.Shop.Quotes.Models;
namespace LiteCharms.Features.Quotes.Queries;
public class GetCustomerQuotesQuery : IRequest<Result<Quote[]>>
{
public Guid CustomerId { get; set; }
private GetCustomerQuotesQuery(Guid customerId) => CustomerId = customerId;
public static GetCustomerQuotesQuery Create(Guid customerId)
{
if (customerId == Guid.Empty)
throw new ArgumentException("CustomerId is required.");
return new(customerId);
}
}