LevelOS-Core/MLL/ModeloNotasFormas.cs

32 lines
1.1 KiB
C#

using System;
namespace MLL
{
public class ModeloNotasFormas
{
public ModeloNotasFormas(int iD_NOTAS_FORMAS, string cODIGO, string cOD_NFE, string nDUP, string vENCTO, string fORMA, string vALOR, string dATA_CADASTRO, string cNPJ_OPERADORA, string tBand)
{
ID_NOTAS_FORMAS = iD_NOTAS_FORMAS;
CODIGO = cODIGO;
COD_NFE = cOD_NFE;
this.nDUP = nDUP;
VENCTO = vENCTO;
FORMA = fORMA;
VALOR = vALOR;
DATA_CADASTRO = dATA_CADASTRO;
CNPJ_OPERADORA = cNPJ_OPERADORA;
this.tBand = tBand;
}
public int ID_NOTAS_FORMAS { get; set; }
public string CODIGO { get; set; }
public string COD_NFE { get; set; }
public string nDUP { get; set; }
public string VENCTO { get; set; }
public string FORMA { get; set; }
public string VALOR { get; set; }
public string DATA_CADASTRO { get; set; }
public string CNPJ_OPERADORA { get; set; }
public string tBand { get; set; }
}
}