37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloPlanos
|
|
{
|
|
public ModeloPlanos()
|
|
{
|
|
ID_PLANOS = 0;
|
|
CODIGO = string.Empty;
|
|
NOME = string.Empty;
|
|
NIVEL = string.Empty;
|
|
DEBITO = string.Empty;
|
|
CODIGO_PAI = string.Empty;
|
|
CODIGO_FILHO = string.Empty;
|
|
}
|
|
|
|
public ModeloPlanos(int iD_PLANOS, string cODIGO, string nOME, string nIVEL, string dEBITO, string cODIGO_PAI, string cODIGO_FILHO)
|
|
{
|
|
ID_PLANOS = iD_PLANOS;
|
|
CODIGO = cODIGO;
|
|
NOME = nOME;
|
|
NIVEL = nIVEL;
|
|
DEBITO = dEBITO;
|
|
CODIGO_PAI = cODIGO_PAI;
|
|
CODIGO_FILHO = cODIGO_FILHO;
|
|
}
|
|
|
|
public int ID_PLANOS { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string NOME { get; set; }
|
|
public string NIVEL { get; set; }
|
|
public string DEBITO { get; set; }
|
|
public string CODIGO_PAI { get; set; }
|
|
public string CODIGO_FILHO { get; set; }
|
|
}
|
|
} |