< Summary

Information
Class: FAU.Logica.DTOs.AguinaldoSemestralDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/AguinaldoSemestralDto.cs
Line coverage
100%
Covered lines: 14
Uncovered lines: 0
Coverable lines: 14
Total lines: 19
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_PersonaId()100%11100%
get_Cedula()100%11100%
get_NombreCompleto()100%11100%
get_Anio()100%11100%
get_Semestre()100%11100%
get_TotalHaberesGravadosSemestre()100%11100%
get_MesesTrabajados()100%11100%
get_Nominal()100%11100%
get_Irpf()100%11100%
get_Montepio()100%11100%
get_Sanidad()100%11100%
get_TotalDescuentos()100%11100%
get_Liquido()100%11100%
get_Redondeo()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class AguinaldoSemestralDto
 4{
 15    public long PersonaId { get; set; }
 26    public string Cedula { get; set; } = string.Empty;
 27    public string NombreCompleto { get; set; } = string.Empty;
 18    public short Anio { get; set; }
 19    public short Semestre { get; set; }
 110    public decimal TotalHaberesGravadosSemestre { get; set; }
 111    public short MesesTrabajados { get; set; }
 312    public decimal Nominal { get; set; }
 313    public decimal Irpf { get; set; }
 314    public decimal Montepio { get; set; }
 315    public decimal Sanidad { get; set; }
 316    public decimal TotalDescuentos { get; set; }
 217    public decimal Liquido { get; set; }
 118    public decimal Redondeo { get; set; }
 19}