< Summary

Information
Class: FAU.Logica.DTOs.AcumuladoresDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/AcumuladoresDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 14
Coverable lines: 14
Total lines: 22
Line coverage: 0%
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_HaberesNormales()100%210%
get_HaberesAnormales()100%210%
get_BeneficiosSociales()100%210%
get_DescuentosLegales()100%210%
get_DescuentosPersonales()100%210%
get_HabNorGrab()100%210%
get_HabsAnGrab()100%210%
get_HabsNoGrab()100%210%
get_BenSocGrab()100%210%
get_BenSocNoGr()100%210%
get_DtoLegGrab()100%210%
get_DtoLegNoGr()100%210%
get_DtoPerGrab()100%210%
get_Liquido()100%210%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class AcumuladoresDto
 4{
 5    // Bases
 06    public decimal HaberesNormales { get; set; }
 07    public decimal HaberesAnormales { get; set; }
 08    public decimal BeneficiosSociales { get; set; }
 09    public decimal DescuentosLegales { get; set; }
 010    public decimal DescuentosPersonales { get; set; }
 11
 12    // Clasificaciones SIIF
 013    public decimal HabNorGrab { get; set; }
 014    public decimal HabsAnGrab { get; set; }
 015    public decimal HabsNoGrab { get; set; }
 016    public decimal BenSocGrab { get; set; }
 017    public decimal BenSocNoGr { get; set; }
 018    public decimal DtoLegGrab { get; set; }
 019    public decimal DtoLegNoGr { get; set; }
 020    public decimal DtoPerGrab { get; set; }
 021    public decimal Liquido { get; set; }
 22}