44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloIBPT
|
|
{
|
|
public ModeloIBPT()
|
|
{
|
|
ID_IBPT = 0;
|
|
CODIGO = string.Empty;
|
|
NCM = string.Empty;
|
|
NacionalFederal = string.Empty;
|
|
ImportadosFederal = string.Empty;
|
|
Estadual = string.Empty;
|
|
Municipal = string.Empty;
|
|
Tipo = string.Empty;
|
|
}
|
|
public ModeloIBPT(int iD_IBPT, string cODIGO, string nCM, string nacionalFederal,
|
|
string importadosFederal, string estadual, string municipal, string tipo)
|
|
{
|
|
ID_IBPT = iD_IBPT;
|
|
CODIGO = cODIGO;
|
|
NCM = nCM;
|
|
NacionalFederal = nacionalFederal;
|
|
ImportadosFederal = importadosFederal;
|
|
Estadual = estadual;
|
|
Municipal = municipal;
|
|
Tipo = tipo;
|
|
}
|
|
|
|
public int ID_IBPT { get; set; }
|
|
|
|
public string CODIGO { get; set; }
|
|
public string NCM { get; set; }
|
|
|
|
public string NacionalFederal { get; set; }
|
|
public string ImportadosFederal { get; set; }
|
|
|
|
public string Estadual { get; set; }
|
|
public string Municipal { get; set; }
|
|
|
|
public string Tipo { get; set; }
|
|
}
|
|
} |