LevelOS/MLL/ModeloNotasFormas.cs

48 lines
1.6 KiB
C#

using System;
using System.Drawing;
using System.Numerics;
using System.Runtime.Intrinsics.X86;
namespace MLL
{
public class ModeloNotasFormas
{
public ModeloNotasFormas()
{
ID_NOTAS_FORMAS = 0;
CODIGO = string.Empty;
COD_NFE = string.Empty;
this.NDUP = string.Empty;
VENCTO = string.Empty;
FORMA = string.Empty;
VALOR = string.Empty;
DATA_CADASTRO = string.Empty;
CNPJ_OPERADORA = string.Empty;
this.TBAND = string.Empty;
}
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; }
}
}