46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloChegues
|
|
{
|
|
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; }
|
|
}
|
|
} |