LevelOS/MLL/ModeloAgenda.cs

46 lines
1.4 KiB
C#

using System;
namespace MLL
{
public class ModeloAgenda
{
public ModeloAgenda()
{
this.ID_AGENDA = 0;
this.CODIGO = string.Empty;
this.COMPROMISSO = string.Empty;
this.DDATA = string.Empty;
this.AVISAR = string.Empty;
this.FUNC = string.Empty;
this.DIA = string.Empty;
this.HORA = string.Empty;
this.REALIZADO = string.Empty;
this.OS_VINC = string.Empty;
}
public ModeloAgenda(int iD_AGENDA, string cODIGO, string cOMPROMISSO, string dDATA, string aVISAR, string fUNC, string dIA, string hORA, string rEALIZADO, string oS_VINC)
{
ID_AGENDA = iD_AGENDA;
CODIGO = cODIGO;
COMPROMISSO = cOMPROMISSO;
DDATA = dDATA;
AVISAR = aVISAR;
FUNC = fUNC;
DIA = dIA;
HORA = hORA;
REALIZADO = rEALIZADO;
OS_VINC = oS_VINC;
}
public int ID_AGENDA { get; set; }
public string CODIGO { get; set; }
public string COMPROMISSO { get; set; }
public string DDATA { get; set; }
public string AVISAR { get; set; }
public string FUNC { get; set; }
public string DIA { get; set; }
public string HORA { get; set; }
public string REALIZADO { get; set; }
public string OS_VINC { get; set; }
}
}