76 lines
2.6 KiB
C#
76 lines
2.6 KiB
C#
using System;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloItensVenda
|
|
{
|
|
public ModeloItensVenda()
|
|
{
|
|
ID_ITENS_VENDA = 0;
|
|
CODIGO = string.Empty;
|
|
ITEM_CODIGO = string.Empty;
|
|
BARCODE = string.Empty;
|
|
DESCRICAO = string.Empty;
|
|
SERVICO = string.Empty;
|
|
QTD = string.Empty;
|
|
VRL_UN = string.Empty;
|
|
DESCONTO = string.Empty;
|
|
VLR_TOTAL = string.Empty;
|
|
UN = string.Empty;
|
|
VENDA = string.Empty;
|
|
DIA = string.Empty;
|
|
SERIAIS_IN = string.Empty;
|
|
XPED = string.Empty;
|
|
NITEMPED = string.Empty;
|
|
CUSTO = string.Empty;
|
|
VINF_ADIC = string.Empty;
|
|
LOTES = string.Empty;
|
|
}
|
|
public ModeloItensVenda(int iD_ITENS_VENDA, string cODIGO, string iTEM_CODIGO, string bARCODE,
|
|
string dESCRICAO, string sERVICO, string qTD, string vRL_UN, string dESCONTO,
|
|
string vLR_TOTAL, string uN, string vENDA, string dIA, string sERIAIS_IN, string xPED,
|
|
string nITEMPED, string cUSTO, string vINF_ADIC, string lOTES)
|
|
{
|
|
ID_ITENS_VENDA = iD_ITENS_VENDA;
|
|
CODIGO = cODIGO;
|
|
ITEM_CODIGO = iTEM_CODIGO;
|
|
BARCODE = bARCODE;
|
|
DESCRICAO = dESCRICAO;
|
|
SERVICO = sERVICO;
|
|
QTD = qTD;
|
|
VRL_UN = vRL_UN;
|
|
DESCONTO = dESCONTO;
|
|
VLR_TOTAL = vLR_TOTAL;
|
|
UN = uN;
|
|
VENDA = vENDA;
|
|
DIA = dIA;
|
|
SERIAIS_IN = sERIAIS_IN;
|
|
XPED = xPED;
|
|
NITEMPED = nITEMPED;
|
|
CUSTO = cUSTO;
|
|
VINF_ADIC = vINF_ADIC;
|
|
LOTES = lOTES;
|
|
}
|
|
|
|
public int ID_ITENS_VENDA { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string ITEM_CODIGO { get; set; }
|
|
public string BARCODE { get; set; }
|
|
public string DESCRICAO { get; set; }
|
|
public string SERVICO { get; set; }
|
|
public string QTD { get; set; }
|
|
public string VRL_UN { get; set; }
|
|
public string DESCONTO { get; set; }
|
|
public string VLR_TOTAL { get; set; }
|
|
public string UN { get; set; }
|
|
public string VENDA { get; set; }
|
|
public string DIA { get; set; }
|
|
public string SERIAIS_IN { get; set; }
|
|
public string XPED { get; set; }
|
|
public string NITEMPED { get; set; }
|
|
public string CUSTO { get; set; }
|
|
public string VINF_ADIC { get; set; }
|
|
public string LOTES { get; set; }
|
|
}
|
|
} |