51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using System;
|
|
using System.Runtime.Intrinsics.X86;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloFcaixa
|
|
{
|
|
public ModeloFcaixa()
|
|
{
|
|
ID_FCAIXA = 0;
|
|
CODIGO = string.Empty;
|
|
DIA = string.Empty;
|
|
RECEITA = string.Empty;
|
|
DESPESA = string.Empty;
|
|
OBS = string.Empty;
|
|
PLANO_CONTAS = string.Empty;
|
|
COD_CONTA = string.Empty;
|
|
FORMA = string.Empty;
|
|
}
|
|
|
|
public ModeloFcaixa(int iD_FCAIXA, string cODIGO, string dIA, string rECEITA,
|
|
string dESPESA, string oBS, string pLANO_CONTAS, string cOD_CONTA, string fORMA)
|
|
{
|
|
ID_FCAIXA = iD_FCAIXA;
|
|
CODIGO = cODIGO;
|
|
DIA = dIA;
|
|
RECEITA = rECEITA;
|
|
DESPESA = dESPESA;
|
|
OBS = oBS;
|
|
PLANO_CONTAS = pLANO_CONTAS;
|
|
COD_CONTA = cOD_CONTA;
|
|
FORMA = fORMA;
|
|
}
|
|
|
|
public int ID_FCAIXA { get; set; }
|
|
|
|
public string CODIGO { get; set; }
|
|
public string DIA { get; set; }
|
|
|
|
public string RECEITA { get; set; }
|
|
public string DESPESA { get; set; }
|
|
|
|
public string OBS { get; set; }
|
|
|
|
public string PLANO_CONTAS { get; set; }
|
|
public string COD_CONTA { get; set; }
|
|
|
|
public string FORMA { get; set; }
|
|
}
|
|
} |