63 lines
1.9 KiB
C#
63 lines
1.9 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloItensNota
|
|
{
|
|
public ModeloItensNota(int iD_ITENS_NOTA, string cODIGO, string cOD_NOTA, string tIPO,
|
|
string cOD_VENDEDOR, string cOD_ITEM, string dESCRICAO, string uNIDADE,
|
|
string qTD, string pRECO, string iCMS, string iPI, string iSS, string dESCONTO,
|
|
string tOTAL, string cFOP, string cST, string gTIN, string iNF_ADIC)
|
|
{
|
|
ID_ITENS_NOTA = iD_ITENS_NOTA;
|
|
CODIGO = cODIGO;
|
|
COD_NOTA = cOD_NOTA;
|
|
TIPO = tIPO;
|
|
COD_VENDEDOR = cOD_VENDEDOR;
|
|
COD_ITEM = cOD_ITEM;
|
|
DESCRICAO = dESCRICAO;
|
|
UNIDADE = uNIDADE;
|
|
QTD = qTD;
|
|
PRECO = pRECO;
|
|
ICMS = iCMS;
|
|
IPI = iPI;
|
|
ISS = iSS;
|
|
DESCONTO = dESCONTO;
|
|
TOTAL = tOTAL;
|
|
CFOP = cFOP;
|
|
CST = cST;
|
|
GTIN = gTIN;
|
|
INF_ADIC = iNF_ADIC;
|
|
}
|
|
|
|
public int ID_ITENS_NOTA { get; set; }
|
|
|
|
public string CODIGO { get; set; }
|
|
public string COD_NOTA { get; set; }
|
|
|
|
public string TIPO { get; set; }
|
|
|
|
public string COD_VENDEDOR { get; set; }
|
|
public string COD_ITEM { get; set; }
|
|
|
|
public string DESCRICAO { get; set; }
|
|
public string UNIDADE { get; set; }
|
|
|
|
public string QTD { get; set; }
|
|
public string PRECO { get; set; }
|
|
|
|
public string ICMS { get; set; }
|
|
public string IPI { get; set; }
|
|
public string ISS { get; set; }
|
|
|
|
public string DESCONTO { get; set; }
|
|
public string TOTAL { get; set; }
|
|
|
|
public string CFOP { get; set; }
|
|
public string CST { get; set; }
|
|
|
|
public string GTIN { get; set; }
|
|
|
|
public string INF_ADIC { get; set; }
|
|
}
|
|
} |