LevelOS-Core/MLL/ModeloNotasFaturas.cs

26 lines
785 B
C#

using System;
namespace MLL
{
public class ModeloNotasFaturas
{
public ModeloNotasFaturas(int iD_NOTAS_FATURAS, string cODIGO, string cOD_NOTA, string iNDICE, string nUMERO, string vENCTO, string vALOR)
{
ID_NOTAS_FATURAS = iD_NOTAS_FATURAS;
CODIGO = cODIGO;
COD_NOTA = cOD_NOTA;
INDICE = iNDICE;
NUMERO = nUMERO;
VENCTO = vENCTO;
VALOR = vALOR;
}
public int ID_NOTAS_FATURAS { get; set; }
public string CODIGO { get; set; }
public string COD_NOTA { get; set; }
public string INDICE { get; set; }
public string NUMERO { get; set; }
public string VENCTO { get; set; }
public string VALOR { get; set; }
}
}