LevelOS/MLL/ModeloItensPedido.cs

73 lines
2.4 KiB
C#

using System;
using System.Drawing;
namespace MLL
{
public class ModeloItensPedido
{
public ModeloItensPedido()
{
ID_ITENS_PEDIDO = 0;
CODIGO = string.Empty;
ITEM = string.Empty;
PEDIDO = string.Empty;
COD_ITEM = string.Empty;
NOME = string.Empty;
UN = string.Empty;
QTD = string.Empty;
VLR = string.Empty;
IPI = string.Empty;
ICMS = string.Empty;
VALOR = string.Empty;
COD_FAB = string.Empty;
this.VFrete = string.Empty;
this.VSeguro = string.Empty;
this.VDesconto = string.Empty;
this.VOutros = string.Empty;
SERIAIS_IN = string.Empty;
}
public ModeloItensPedido(int iD_ITENS_PEDIDO, string cODIGO, string iTEM, string pEDIDO,
string cOD_ITEM, string nOME, string uN, string qTD, string vLR, string iPI, string iCMS,
string vALOR, string cOD_FAB, string vFrete, string vSeguro, string vDesconto, string vOutros,
string sERIAIS_IN)
{
ID_ITENS_PEDIDO = iD_ITENS_PEDIDO;
CODIGO = cODIGO;
ITEM = iTEM;
PEDIDO = pEDIDO;
COD_ITEM = cOD_ITEM;
NOME = nOME;
UN = uN;
QTD = qTD;
VLR = vLR;
IPI = iPI;
ICMS = iCMS;
VALOR = vALOR;
COD_FAB = cOD_FAB;
this.VFrete = vFrete;
this.VSeguro = vSeguro;
this.VDesconto = vDesconto;
this.VOutros = vOutros;
SERIAIS_IN = sERIAIS_IN;
}
public int ID_ITENS_PEDIDO { get; set; }
public string CODIGO { get; set; }
public string ITEM { get; set; }
public string PEDIDO { get; set; }
public string COD_ITEM { get; set; }
public string NOME { get; set; }
public string UN { get; set; }
public string QTD { get; set; }
public string VLR { get; set; }
public string IPI { get; set; }
public string ICMS { get; set; }
public string VALOR { get; set; }
public string COD_FAB { get; set; }
public string VFrete { get; set; }
public string VSeguro { get; set; }
public string VDesconto { get; set; }
public string VOutros { get; set; }
public string SERIAIS_IN { get; set; }
}
}