36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloSituacoes
|
|
{
|
|
public ModeloSituacoes(int iD_SITUACOES, string cODIGO, string nOME, string eTAPA1, string eTAPA2, string eTAPA3, string eTAPA3_PG, string pRONTO, string sUBGRUPO, string cOR_FONTE, string cOR_FUNDO, string pLANO_CONTA)
|
|
{
|
|
ID_SITUACOES = iD_SITUACOES;
|
|
CODIGO = cODIGO;
|
|
NOME = nOME;
|
|
ETAPA1 = eTAPA1;
|
|
ETAPA2 = eTAPA2;
|
|
ETAPA3 = eTAPA3;
|
|
ETAPA3_PG = eTAPA3_PG;
|
|
PRONTO = pRONTO;
|
|
SUBGRUPO = sUBGRUPO;
|
|
COR_FONTE = cOR_FONTE;
|
|
COR_FUNDO = cOR_FUNDO;
|
|
PLANO_CONTA = pLANO_CONTA;
|
|
}
|
|
|
|
public int ID_SITUACOES { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string NOME { get; set; }
|
|
public string ETAPA1 { get; set; }
|
|
public string ETAPA2 { get; set; }
|
|
public string ETAPA3 { get; set; }
|
|
public string ETAPA3_PG { get; set; }
|
|
public string PRONTO { get; set; }
|
|
public string SUBGRUPO { get; set; }
|
|
public string COR_FONTE { get; set; }
|
|
public string COR_FUNDO { get; set; }
|
|
public string PLANO_CONTA { get; set; }
|
|
}
|
|
} |