get invoice view

This commit is contained in:
mmrbnjd
2024-05-14 14:58:25 +03:30
parent b208c71bd7
commit b44500d9ab
9 changed files with 330 additions and 14 deletions

View File

@@ -8,10 +8,10 @@ namespace Shared.DTOs.Serch
{
public class ItemSerchGetInvoices : IFildGlobalItemSerch
{
public string? Title { get; set; }
public int? InvoiceID { get; set; }
public string? Title { get; set; }//
public int? InvoiceID { get; set; }//
public int? CustomerID { get; set; }
public InvoiceType? invoiceType { get; set; }
public InvoiceType? invoiceType { get; set; }//
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 5;
}