LevelOS-Core/MLL/ModeloContasDeposito.cs

30 lines
917 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MLL
{
public class ModeloContasDeposito
{
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; }
}
}