< 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: 16
Uncovered lines: 0
Coverable lines: 16
Total lines: 21
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_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{
 45    public long Id { get; set; }
 46    public int Codigo { get; set; }
 87    public string Nombre { get; set; } = string.Empty;
 88    public string Tipo { get; set; } = string.Empty;
 49    public string? ClasificacionSiif { get; set; }
 410    public string? NormaLegal { get; set; }
 411    public bool EsGravado { get; set; }
 412    public bool AcumulaAguinaldo { get; set; }
 413    public bool LlevaAumento { get; set; }
 414    public string? FormulaCalculo { get; set; }
 415    public short OrdenCalculo { get; set; }
 416    public bool ContribuyeWPara53 { get; set; }
 417    public bool ContribuyeWPara10 { get; set; }
 418    public bool ContribuyeWPara20 { get; set; }
 419    public bool ContribuyeWNominal { get; set; }
 620    public bool Vigente { get; set; }
 21}