LevelOS/MLL/ModeloContasDeposito.cs

40 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MLL
{
public class ModeloContasDeposito
{
public ModeloContasDeposito()
{
ID_COD_CONTA_DEPO = 0;
CODIGO = string.Empty;
COD_CORRENTE = string.Empty;
COD_LANCTO = string.Empty;
VALOR = string.Empty;
DATA_CADASTRO = string.Empty;
}
public ModeloContasDeposito(int iD_COD_CONTA_DEPO, string? cODIGO, string? cOD_CORRENTE,
string? cOD_LANCTO, string? vALOR, string? dATA_CADASTRO)
{
ID_COD_CONTA_DEPO = iD_COD_CONTA_DEPO;
CODIGO = cODIGO;
COD_CORRENTE = cOD_CORRENTE;
COD_LANCTO = cOD_LANCTO;
VALOR = vALOR;
DATA_CADASTRO = dATA_CADASTRO;
}
public int ID_COD_CONTA_DEPO { get; set; }
public string? CODIGO { get; set; }
public string? COD_CORRENTE { get; set; }
public string? COD_LANCTO { get; set; }
public string? VALOR { get; set; }
public string? DATA_CADASTRO { get; set; }
}
}