LevelOS/MLL/ModeloContas.cs

127 lines
4.7 KiB
C#

using System;
using System.Drawing;
namespace MLL
{
public class ModeloContas
{
public ModeloContas()
{
ID_CONTAS = 0;
CODIGO = string.Empty;
TIPO = string.Empty;
CLIENTE = string.Empty;
FORNECEDOR = string.Empty;
COD_CLIENTE = string.Empty;
COD_FORNECEDOR = string.Empty;
VENCIMENTO = string.Empty;
PAGO = string.Empty;
PLANO_CONTAS = string.Empty;
OBSERVACAO = string.Empty;
VALOR = string.Empty;
REFERENCIA = string.Empty;
FCOBRANCA = string.Empty;
PARCELA = string.Empty;
ECF_DINHEIRO = string.Empty;
ECF_CHEQUE = string.Empty;
ECF_CARTAO = string.Empty;
ECF_BOLETO = string.Empty;
ECF_TROCO = string.Empty;
DATA_DOCTO = string.Empty;
JUROS = string.Empty;
DESCONTO = string.Empty;
CFOP = string.Empty;
CLISTSERV = string.Empty;
PMVAST = string.Empty;
PREDBCST = string.Empty;
VBCICMSST = string.Empty;
AICMSST = string.Empty;
VICMSST = string.Empty;
DATA_PGTO = string.Empty;
COD_CORRENTE = string.Empty;
OBS_COB = string.Empty;
}
public ModeloContas(int iD_CONTAS, string cODIGO, string tIPO, string cLIENTE, string fORNECEDOR,
string cOD_CLIENTE, string cOD_FORNECEDOR, string vENCIMENTO, string pAGO,
string pLANO_CONTAS, string oBSERVACAO, string vALOR, string rEFERENCIA,
string fCOBRANCA, string pARCELA, string eCF_DINHEIRO, string eCF_CHEQUE,
string eCF_CARTAO, string eCF_BOLETO, string eCF_TROCO, string dATA_DOCTO,
string jUROS, string dESCONTO, string cFOP, string cLISTSERV, string pMVAST,
string pREDBCST, string vBCICMSST, string aICMSST, string vICMSST, string dATA_PGTO,
string cOD_CORRENTE, string oBS_COB)
{
ID_CONTAS = iD_CONTAS;
CODIGO = cODIGO;
TIPO = tIPO;
CLIENTE = cLIENTE;
FORNECEDOR = fORNECEDOR;
COD_CLIENTE = cOD_CLIENTE;
COD_FORNECEDOR = cOD_FORNECEDOR;
VENCIMENTO = vENCIMENTO;
PAGO = pAGO;
PLANO_CONTAS = pLANO_CONTAS;
OBSERVACAO = oBSERVACAO;
VALOR = vALOR;
REFERENCIA = rEFERENCIA;
FCOBRANCA = fCOBRANCA;
PARCELA = pARCELA;
ECF_DINHEIRO = eCF_DINHEIRO;
ECF_CHEQUE = eCF_CHEQUE;
ECF_CARTAO = eCF_CARTAO;
ECF_BOLETO = eCF_BOLETO;
ECF_TROCO = eCF_TROCO;
DATA_DOCTO = dATA_DOCTO;
JUROS = jUROS;
DESCONTO = dESCONTO;
CFOP = cFOP;
CLISTSERV = cLISTSERV;
PMVAST = pMVAST;
PREDBCST = pREDBCST;
VBCICMSST = vBCICMSST;
AICMSST = aICMSST;
VICMSST = vICMSST;
DATA_PGTO = dATA_PGTO;
COD_CORRENTE = cOD_CORRENTE;
OBS_COB = oBS_COB;
}
public int ID_CONTAS { get; set; }
public string CODIGO { get; set; }
public string TIPO { get; set; }
public string CLIENTE { get; set; }
public string FORNECEDOR { get; set; }
public string COD_CLIENTE { get; set; }
public string COD_FORNECEDOR { get; set; }
public string VENCIMENTO { get; set; }
public string PAGO { get; set; }
public string PLANO_CONTAS { get; set; }
public string OBSERVACAO { get; set; }
public string VALOR { get; set; }
public string REFERENCIA { get; set; }
public string FCOBRANCA { get; set; }
public string PARCELA { get; set; }
public string ECF_DINHEIRO { get; set; }
public string ECF_CHEQUE { get; set; }
public string ECF_CARTAO { get; set; }
public string ECF_BOLETO { get; set; }
public string ECF_TROCO { get; set; }
public string DATA_DOCTO { get; set; }
public string JUROS { get; set; }
public string DESCONTO { get; set; }
public string CFOP { get; set; }
public string CLISTSERV { get; set; }
public string PMVAST { get; set; }
public string PREDBCST { get; set; }
public string VBCICMSST { get; set; }
public string AICMSST { get; set; }
public string VICMSST { get; set; }
public string DATA_PGTO { get; set; }
public string COD_CORRENTE { get; set; }
public string OBS_COB { get; set; }
}
}