16 lines
545 B
C#
16 lines
545 B
C#
|
|
namespace phronCare.UIBlazor.Services.Sales.SalesDocuments
|
||
|
|
{
|
||
|
|
public sealed class SalesDocumentSearchParams
|
||
|
|
{
|
||
|
|
public int? CustomerId { get; set; }
|
||
|
|
public string? CustomerText { get; set; }
|
||
|
|
public int? QuoteId { get; set; }
|
||
|
|
public int? DocumentType { get; set; }
|
||
|
|
public int? Status { get; set; }
|
||
|
|
public DateTime? IssueDateFrom { get; set; }
|
||
|
|
public DateTime? IssueDateTo { get; set; }
|
||
|
|
public int Page { get; set; } = 1;
|
||
|
|
public int PageSize { get; set; } = 10;
|
||
|
|
}
|
||
|
|
}
|