LevelOS-Core/MLL/ModeloNotasRefNFP.cs

52 lines
1.7 KiB
C#

using System;
using System.Reflection;
namespace MLL
{
public class ModeloNotasRefNFP
{
public ModeloNotasRefNFP()
{
ID_NOTAS_REF_NFP = 0;
CODIGO = string.Empty;
COD_NOTA = string.Empty;
CUF = string.Empty;
AAMM = string.Empty;
CNPJ_CPF = string.Empty;
IE = string.Empty;
Modelo = string.Empty;
Serie = string.Empty;
NNF = string.Empty;
Produtor = string.Empty;
DATA_CADASTRO = string.Empty;
}
public ModeloNotasRefNFP(int iD_NOTAS_REF_NFP, string cODIGO, string cOD_NOTA, string cUF, string aAMM, string cNPJ_CPF, string iE, string modelo, string serie, string nNF, string produtor, string dATA_CADASTRO)
{
ID_NOTAS_REF_NFP = iD_NOTAS_REF_NFP;
CODIGO = cODIGO;
COD_NOTA = cOD_NOTA;
CUF = cUF;
AAMM = aAMM;
CNPJ_CPF = cNPJ_CPF;
IE = iE;
Modelo = modelo;
Serie = serie;
NNF = nNF;
Produtor = produtor;
DATA_CADASTRO = dATA_CADASTRO;
}
public int ID_NOTAS_REF_NFP { get; set; }
public string CODIGO { get; set; }
public string COD_NOTA { get; set; }
public string CUF { get; set; }
public string AAMM { get; set; }
public string CNPJ_CPF { get; set; }
public string IE { get; set; }
public string Modelo { get; set; }
public string Serie { get; set; }
public string NNF { get; set; }
public string Produtor { get; set; }
public string DATA_CADASTRO { get; set; }
}
}