LevelOS/MLL/ModeloSatFiscalConsumidorFormas.cs

41 lines
1.4 KiB
C#

using System;
using System.Drawing;
using System.Runtime.Intrinsics.X86;
namespace MLL
{
public class ModeloSatFiscalConsumidorFormas
{
public ModeloSatFiscalConsumidorFormas()
{
ID_SAT_FISCAL_CONS_FORMAS = 0;
CODIGO = string.Empty;
COD_NFCE = string.Empty;
FORMA = string.Empty;
VALOR = string.Empty;
DATA_CADASTRO = string.Empty;
CNPJ_OPERADORA = string.Empty;
this.TBand = string.Empty;
}
public ModeloSatFiscalConsumidorFormas(int iD_SAT_FISCAL_CONS_FORMAS, string cODIGO, string cOD_NFCE, string fORMA, string vALOR, string dATA_CADASTRO, string cNPJ_OPERADORA, string tBand)
{
ID_SAT_FISCAL_CONS_FORMAS = iD_SAT_FISCAL_CONS_FORMAS;
CODIGO = cODIGO;
COD_NFCE = cOD_NFCE;
FORMA = fORMA;
VALOR = vALOR;
DATA_CADASTRO = dATA_CADASTRO;
CNPJ_OPERADORA = cNPJ_OPERADORA;
this.TBand = tBand;
}
public int ID_SAT_FISCAL_CONS_FORMAS { get; set; }
public string CODIGO { get; set; }
public string COD_NFCE { get; set; }
public string FORMA { get; set; }
public string VALOR { get; set; }
public string DATA_CADASTRO { get; set; }
public string CNPJ_OPERADORA { get; set; }
public string TBand { get; set; }
}
}