33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasRetencoes
|
|
{
|
|
public ModeloNotasRetencoes(int iD_NOTAS_RETENCOES, string cODIGO, string cOD_NOTA, string vIRRF,
|
|
string vBCIRRF, string vBCRetPrev, string vRetPrev, string vRetCOFINS, string vRetCSLL, string vRetPIS)
|
|
{
|
|
ID_NOTAS_RETENCOES = iD_NOTAS_RETENCOES;
|
|
CODIGO = cODIGO;
|
|
COD_NOTA = cOD_NOTA;
|
|
this.vIRRF = vIRRF;
|
|
this.vBCIRRF = vBCIRRF;
|
|
this.vBCRetPrev = vBCRetPrev;
|
|
this.vRetPrev = vRetPrev;
|
|
this.vRetCOFINS = vRetCOFINS;
|
|
this.vRetCSLL = vRetCSLL;
|
|
this.vRetPIS = vRetPIS;
|
|
}
|
|
|
|
public int ID_NOTAS_RETENCOES { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string COD_NOTA { get; set; }
|
|
public string vIRRF { get; set; }
|
|
public string vBCIRRF { get; set; }
|
|
public string vBCRetPrev { get; set; }
|
|
public string vRetPrev { get; set; }
|
|
public string vRetCOFINS { get; set; }
|
|
public string vRetCSLL { get; set; }
|
|
public string vRetPIS { get; set; }
|
|
}
|
|
} |