using System; namespace MLL { public class ModeloDespesas { public ModeloDespesas() { ID_DESPESAS = 0; CODIGO = string.Empty; PROCESSO = string.Empty; DESCRICAO = string.Empty; VALOR = string.Empty; PAGO = string.Empty; DIA = string.Empty; } public ModeloDespesas(int iD_DESPESAS, string cODIGO, string pROCESSO, string dESCRICAO, string vALOR, string pAGO, string dIA) { ID_DESPESAS = iD_DESPESAS; CODIGO = cODIGO; PROCESSO = pROCESSO; DESCRICAO = dESCRICAO; VALOR = vALOR; PAGO = pAGO; DIA = dIA; } public int ID_DESPESAS { get; set; } public string CODIGO { get; set; } public string PROCESSO { get; set; } public string DESCRICAO { get; set; } public string VALOR { get; set; } public string PAGO { get; set; } public string DIA { get; set; } } }