46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasRetencoes
|
|
{
|
|
public ModeloNotasRetencoes()
|
|
{
|
|
ID_NOTAS_RETENCOES = 0;
|
|
CODIGO = string.Empty;
|
|
COD_NOTA = string.Empty;
|
|
this.VIRRF = string.Empty;
|
|
this.VBCIRRF = string.Empty;
|
|
this.VBCRetPrev = string.Empty;
|
|
this.VRetPrev = string.Empty;
|
|
this.VRetCOFINS = string.Empty;
|
|
this.VRetCSLL = string.Empty;
|
|
this.VRetPIS = string.Empty;
|
|
}
|
|
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; }
|
|
}
|
|
} |