39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Numerics;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasFaturas
|
|
{
|
|
public ModeloNotasFaturas()
|
|
{
|
|
ID_NOTAS_FATURAS = 0;
|
|
CODIGO = string.Empty;
|
|
COD_NOTA = string.Empty;
|
|
INDICE = string.Empty;
|
|
NUMERO = string.Empty;
|
|
VENCTO = string.Empty;
|
|
VALOR = string.Empty;
|
|
}
|
|
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; }
|
|
}
|
|
} |