using System; using System.Drawing; using System.Security.Cryptography; namespace MLL { public class ModeloCartoes { public ModeloCartoes() { ID_COD_CARTAO = 0; CODIGO = string.Empty; BANDEIRA = string.Empty; NUM_CARTAO = string.Empty; NOME = string.Empty; VALIDADE = string.Empty; AUTORIZACAO = string.Empty; PARCELAS = string.Empty; VALOR = string.Empty; COD_CLIENTE = string.Empty; RESUMO = string.Empty; DEBITO = string.Empty; COD_CONTA = string.Empty; DIA = string.Empty; COMPENSADO = string.Empty; OBS_COMP = string.Empty; } public ModeloCartoes(int iD_COD_CARTAO, string cODIGO, string bANDEIRA, string nUM_CARTAO, string nOME, string vALIDADE, string aUTORIZACAO, string pARCELAS, string vALOR, string cOD_CLIENTE, string rESUMO, string dEBITO, string cOD_CONTA, string dIA, string cOMPENSADO, string oBS_COMP) { ID_COD_CARTAO = iD_COD_CARTAO; CODIGO = cODIGO; BANDEIRA = bANDEIRA; NUM_CARTAO = nUM_CARTAO; NOME = nOME; VALIDADE = vALIDADE; AUTORIZACAO = aUTORIZACAO; PARCELAS = pARCELAS; VALOR = vALOR; COD_CLIENTE = cOD_CLIENTE; RESUMO = rESUMO; DEBITO = dEBITO; COD_CONTA = cOD_CONTA; DIA = dIA; COMPENSADO = cOMPENSADO; OBS_COMP = oBS_COMP; } public int ID_COD_CARTAO { get; set; } public string CODIGO { get; set; } public string BANDEIRA { get; set; } public string NUM_CARTAO { get; set; } public string NOME { get; set; } public string VALIDADE { get; set; } public string AUTORIZACAO { get; set; } public string PARCELAS { get; set; } public string VALOR { get; set; } public string COD_CLIENTE { get; set; } public string RESUMO { get; set; } public string DEBITO { get; set; } public string COD_CONTA { get; set; } public string DIA { get; set; } public string COMPENSADO { get; set; } public string OBS_COMP { get; set; } } }