invoice
This commit is contained in:
@@ -7,19 +7,29 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Shared.DTOs
|
||||
{
|
||||
public class NUInvoiceDTO
|
||||
{
|
||||
public int? ID { get; set; }
|
||||
public string Title { get; set; }
|
||||
public int? PatternID { get; set; }
|
||||
public int CustomerID { get; set; }
|
||||
public string InvoicIssueDate { get; set; }
|
||||
public string InvoiceDate { get; set; }
|
||||
public string? Des { get; set; }
|
||||
}
|
||||
public class InvoiceDTO
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public InvoiceType? invoiceType { get; set; }
|
||||
public int? PatternID { get; set; }
|
||||
public string? invoiceTypeTitle { get; set; }
|
||||
public int? CompanyID { get; set; }
|
||||
public int CustomerID { get; set; }
|
||||
public int CustomerName { get; set; }
|
||||
public string CustomerName { get; set; }
|
||||
public string? Udate { get; set; }
|
||||
public string? InvoicIssueDate { get; set; }
|
||||
public string? InvoiceDate { get; set; }
|
||||
public bool? PreparedtoSendtoTax { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string InvoicIssueDate { get; set; }
|
||||
public string InvoiceDate { get; set; }
|
||||
public bool PreparedtoSendtoTax { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string? Des { get; set; }
|
||||
//مجموع تخفیفات
|
||||
public decimal? tdis { get; set; }
|
||||
|
18
Shared/DTOs/Serch/ItemSerchGetInvoices.cs
Normal file
18
Shared/DTOs/Serch/ItemSerchGetInvoices.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Shared.DTOs.Serch
|
||||
{
|
||||
public class ItemSerchGetInvoices : IFildGlobalItemSerch
|
||||
{
|
||||
public string? Title { get; set; }
|
||||
public int? InvoiceID { get; set; }
|
||||
public int? CustomerID { get; set; }
|
||||
public InvoiceType? invoiceType { get; set; }
|
||||
public int PageIndex { get; set; } = 1;
|
||||
public int PageSize { get; set; } = 5;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user