120 lines
4.1 KiB
C#
120 lines
4.1 KiB
C#
using System;
|
|
using System.Runtime.Intrinsics.X86;
|
|
using static System.Net.WebRequestMethods;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloIcmsEmp
|
|
{
|
|
public ModeloIcmsEmp()
|
|
{
|
|
ID_ICMS_EMP = 0;
|
|
CODIGO = string.Empty;
|
|
UF = string.Empty;
|
|
ICMS = string.Empty;
|
|
UF_AC = string.Empty;
|
|
UF_AL = string.Empty;
|
|
UF_AM = string.Empty;
|
|
UF_AP = string.Empty;
|
|
UF_BA = string.Empty;
|
|
UF_CE = string.Empty;
|
|
UF_DF = string.Empty;
|
|
UF_ES = string.Empty;
|
|
UF_GO = string.Empty;
|
|
UF_MA = string.Empty;
|
|
UF_MT = string.Empty;
|
|
UF_MS = string.Empty;
|
|
UF_MG = string.Empty;
|
|
UF_PA = string.Empty;
|
|
UF_PB = string.Empty;
|
|
UF_PR = string.Empty;
|
|
UF_PE = string.Empty;
|
|
UF_PI = string.Empty;
|
|
UF_RN = string.Empty;
|
|
UF_RS = string.Empty;
|
|
UF_RJ = string.Empty;
|
|
UF_RO = string.Empty;
|
|
UF_RR = string.Empty;
|
|
UF_SC = string.Empty;
|
|
UF_SP = string.Empty;
|
|
UF_SE = string.Empty;
|
|
UF_TO = string.Empty;
|
|
FCP = string.Empty;
|
|
}
|
|
public ModeloIcmsEmp(int iD_ICMS_EMP, string cODIGO, string uF, string iCMS, string uF_AC,
|
|
string uF_AL, string uF_AM, string uF_AP, string uF_BA, string uF_CE,
|
|
string uF_DF, string uF_ES, string uF_GO, string uF_MA, string uF_MT,
|
|
string uF_MS, string uF_MG, string uF_PA, string uF_PB, string uF_PR,
|
|
string uF_PE, string uF_PI, string uF_RN, string uF_RS, string uF_RJ,
|
|
string uF_RO, string uF_RR, string uF_SC, string uF_SP, string uF_SE,
|
|
string uF_TO, string fCP)
|
|
{
|
|
ID_ICMS_EMP = iD_ICMS_EMP;
|
|
CODIGO = cODIGO;
|
|
UF = uF;
|
|
ICMS = iCMS;
|
|
UF_AC = uF_AC;
|
|
UF_AL = uF_AL;
|
|
UF_AM = uF_AM;
|
|
UF_AP = uF_AP;
|
|
UF_BA = uF_BA;
|
|
UF_CE = uF_CE;
|
|
UF_DF = uF_DF;
|
|
UF_ES = uF_ES;
|
|
UF_GO = uF_GO;
|
|
UF_MA = uF_MA;
|
|
UF_MT = uF_MT;
|
|
UF_MS = uF_MS;
|
|
UF_MG = uF_MG;
|
|
UF_PA = uF_PA;
|
|
UF_PB = uF_PB;
|
|
UF_PR = uF_PR;
|
|
UF_PE = uF_PE;
|
|
UF_PI = uF_PI;
|
|
UF_RN = uF_RN;
|
|
UF_RS = uF_RS;
|
|
UF_RJ = uF_RJ;
|
|
UF_RO = uF_RO;
|
|
UF_RR = uF_RR;
|
|
UF_SC = uF_SC;
|
|
UF_SP = uF_SP;
|
|
UF_SE = uF_SE;
|
|
UF_TO = uF_TO;
|
|
FCP = fCP;
|
|
}
|
|
|
|
public int ID_ICMS_EMP { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string UF { get; set; }
|
|
public string ICMS { get; set; }
|
|
public string UF_AC { get; set; }
|
|
public string UF_AL { get; set; }
|
|
public string UF_AM { get; set; }
|
|
public string UF_AP { get; set; }
|
|
public string UF_BA { get; set; }
|
|
public string UF_CE { get; set; }
|
|
public string UF_DF { get; set; }
|
|
public string UF_ES { get; set; }
|
|
public string UF_GO { get; set; }
|
|
public string UF_MA { get; set; }
|
|
public string UF_MT { get; set; }
|
|
public string UF_MS { get; set; }
|
|
public string UF_MG { get; set; }
|
|
public string UF_PA { get; set; }
|
|
public string UF_PB { get; set; }
|
|
public string UF_PR { get; set; }
|
|
public string UF_PE { get; set; }
|
|
public string UF_PI { get; set; }
|
|
public string UF_RN { get; set; }
|
|
public string UF_RS { get; set; }
|
|
public string UF_RJ { get; set; }
|
|
public string UF_RO { get; set; }
|
|
public string UF_RR { get; set; }
|
|
public string UF_SC { get; set; }
|
|
public string UF_SP { get; set; }
|
|
public string UF_SE { get; set; }
|
|
public string UF_TO { get; set; }
|
|
|
|
public string FCP { get; set; }
|
|
}
|
|
} |