LevelOS-Core/MLL/ModeloChegues.cs

65 lines
2.3 KiB
C#

using System;
namespace MLL
{
public class ModeloChegues
{
public ModeloChegues()
{
ID_CHEGUES = 0;
CODIGO = string.Empty;
BANCO = string.Empty;
AGENCIA = string.Empty;
VALOR = string.Empty;
CLIENTE = string.Empty;
FORNECEDOR = string.Empty;
EMITIDO = string.Empty;
COMPENSAR = string.Empty;
OK = string.Empty;
TIPO = string.Empty;
CONTA = string.Empty;
NUMERO = string.Empty;
OBS = string.Empty;
COD_CONTA = string.Empty;
EMITENTE = string.Empty;
}
public ModeloChegues(int iD_CHEGUES, string cODIGO, string bANCO, string aGENCIA,
string vALOR, string cLIENTE, string fORNECEDOR, string eMITIDO, string cOMPENSAR,
string oK, string tIPO, string cONTA, string nUMERO, string oBS, string cOD_CONTA, string eMITENTE)
{
ID_CHEGUES = iD_CHEGUES;
CODIGO = cODIGO;
BANCO = bANCO;
AGENCIA = aGENCIA;
VALOR = vALOR;
CLIENTE = cLIENTE;
FORNECEDOR = fORNECEDOR;
EMITIDO = eMITIDO;
COMPENSAR = cOMPENSAR;
OK = oK;
TIPO = tIPO;
CONTA = cONTA;
NUMERO = nUMERO;
OBS = oBS;
COD_CONTA = cOD_CONTA;
EMITENTE = eMITENTE;
}
public int ID_CHEGUES { get; set; }
public string CODIGO { get; set; }
public string BANCO { get; set; }
public string AGENCIA { get; set; }
public string VALOR { get; set; }
public string CLIENTE { get; set; }
public string FORNECEDOR { get; set; }
public string EMITIDO { get; set; }
public string COMPENSAR { get; set; }
public string OK { get; set; }
public string TIPO { get; set; }
public string CONTA { get; set; }
public string NUMERO { get; set; }
public string OBS { get; set; }
public string COD_CONTA { get; set; }
public string EMITENTE { get; set; }
}
}