34 lines
924 B
C#
34 lines
924 B
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloOrcaPadrao
|
|
{
|
|
public ModeloOrcaPadrao()
|
|
{
|
|
ID_ORCA_PADRAO = 0;
|
|
CODIGO = string.Empty;
|
|
NOME = string.Empty;
|
|
OBS = string.Empty;
|
|
SHOW_OBS = string.Empty;
|
|
USADO = string.Empty;
|
|
}
|
|
public ModeloOrcaPadrao(int iD_ORCA_PADRAO, string cODIGO, string nOME, string oBS, string sHOW_OBS, string uSADO)
|
|
{
|
|
ID_ORCA_PADRAO = iD_ORCA_PADRAO;
|
|
CODIGO = cODIGO;
|
|
NOME = nOME;
|
|
OBS = oBS;
|
|
SHOW_OBS = sHOW_OBS;
|
|
USADO = uSADO;
|
|
}
|
|
|
|
|
|
public int ID_ORCA_PADRAO { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string NOME { get; set; }
|
|
public string OBS { get; set; }
|
|
public string SHOW_OBS { get; set; }
|
|
public string USADO { get; set; }
|
|
}
|
|
} |