LevelOS-Core/MLL/ModeloNotasCFOP.cs

42 lines
1.3 KiB
C#

using System;
namespace MLL
{
public class ModeloNotasCFOP
{
public ModeloNotasCFOP()
{
ID_NOTAS_CFOP = 0;
CODIGO = string.Empty;
CFOP = string.Empty;
DESCRICAO = string.Empty;
BESTOQUE = string.Empty;
BCONTAS = string.Empty;
BICMS = string.Empty;
BICMS_ST = string.Empty;
BASE = string.Empty;
}
public ModeloNotasCFOP(int iD_NOTAS_CFOP, string cODIGO, string cFOP, string dESCRICAO, string bESTOQUE, string bCONTAS, string bICMS, string bICMS_ST, string bASE)
{
ID_NOTAS_CFOP = iD_NOTAS_CFOP;
CODIGO = cODIGO;
CFOP = cFOP;
DESCRICAO = dESCRICAO;
BESTOQUE = bESTOQUE;
BCONTAS = bCONTAS;
BICMS = bICMS;
BICMS_ST = bICMS_ST;
BASE = bASE;
}
public int ID_NOTAS_CFOP { get; set; }
public string CODIGO { get; set; }
public string CFOP { get; set; }
public string DESCRICAO { get; set; }
public string BESTOQUE { get; set; }
public string BCONTAS { get; set; }
public string BICMS { get; set; }
public string BICMS_ST { get; set; }
public string BASE { get; set; }
}
}