< Summary

Information
Class: FAU.Logica.DTOs.CatalogoItemDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CatalogoItemDto.cs
Line coverage
100%
Covered lines: 17
Uncovered lines: 0
Coverable lines: 17
Total lines: 22
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Id()100%11100%
get_Codigo()100%11100%
get_Nombre()100%11100%
get_Tipo()100%11100%
get_ClasificacionSiif()100%11100%
get_NormaLegal()100%11100%
get_EsGravado()100%11100%
get_AcumulaAguinaldo()100%11100%
get_LlevaAumento()100%11100%
get_FormulaCalculo()100%11100%
get_OrdenCalculo()100%11100%
get_ContribuyeWPara53()100%11100%
get_ContribuyeWPara10()100%11100%
get_ContribuyeWPara20()100%11100%
get_ContribuyeWNominal()100%11100%
get_EsFicto()100%11100%
get_Vigente()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CatalogoItemDto.cs

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class CatalogoItemDto
 4{
 215    public long Id { get; set; }
 216    public int Codigo { get; set; }
 357    public string Nombre { get; set; } = string.Empty;
 358    public string Tipo { get; set; } = string.Empty;
 219    public string? ClasificacionSiif { get; set; }
 2110    public string? NormaLegal { get; set; }
 2111    public bool EsGravado { get; set; }
 2112    public bool AcumulaAguinaldo { get; set; }
 2113    public bool LlevaAumento { get; set; }
 2114    public string? FormulaCalculo { get; set; }
 2115    public short OrdenCalculo { get; set; }
 2116    public bool ContribuyeWPara53 { get; set; }
 2117    public bool ContribuyeWPara10 { get; set; }
 2118    public bool ContribuyeWPara20 { get; set; }
 2119    public bool ContribuyeWNominal { get; set; }
 2120    public bool EsFicto { get; set; }
 2121    public bool Vigente { get; set; }
 22}