< Summary

Information
Class: FAU.Entidades.ReciboDto
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboDto.cs
Line coverage
100%
Covered lines: 22
Uncovered lines: 0
Coverable lines: 22
Total lines: 43
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_Anio()100%11100%
get_Mes()100%11100%
get_RelacionLaboralId()100%11100%
get_Cedula()100%11100%
get_PrimerNombre()100%11100%
get_SegundoNombre()100%11100%
get_PrimerApellido()100%11100%
get_SegundoApellido()100%11100%
get_Grado()100%11100%
get_Escalafon()100%11100%
get_Regimen()100%11100%
get_Unidad()100%11100%
get_Programa()100%11100%
get_Haberes()100%11100%
get_DescuentosLegales()100%11100%
get_DescuentosPersonales()100%11100%
get_TotalHaberes()100%11100%
get_TotalDescuentosLegales()100%11100%
get_TotalDescuentosPersonales()100%11100%
get_TotalDescuentos()100%11100%
get_LiquidoPagable()100%11100%
get_DatosBancarios()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboDto.cs

#LineLine coverage
 1namespace FAU.Entidades;
 2
 3public class ReciboDto
 4{
 5    // Datos del período
 126    public int Anio { get; set; }
 127    public int Mes { get; set; }
 8
 9    // Datos del funcionario
 610    public long RelacionLaboralId { get; set; }
 1611    public string Cedula { get; set; } = string.Empty;
 1612    public string PrimerNombre { get; set; } = string.Empty;
 1013    public string SegundoNombre { get; set; } = string.Empty;
 1614    public string PrimerApellido { get; set; } = string.Empty;
 1015    public string SegundoApellido { get; set; } = string.Empty;
 1616    public string Grado { get; set; } = string.Empty;
 1617    public string Escalafon { get; set; } = string.Empty;
 1618    public string Regimen { get; set; } = string.Empty;
 1619    public string Unidad { get; set; } = string.Empty;
 1620    public string Programa { get; set; } = string.Empty;
 21
 22    // Secciones de ítems
 1723    public List<ReciboItemDto> Haberes { get; set; } = new();
 1724    public List<ReciboItemDto> DescuentosLegales { get; set; } = new();
 2225    public List<ReciboItemDto> DescuentosPersonales { get; set; } = new();
 26
 27    // Totales
 1428    public decimal TotalHaberes { get; set; }
 1029    public decimal TotalDescuentosLegales { get; set; }
 1030    public decimal TotalDescuentosPersonales { get; set; }
 1231    public decimal TotalDescuentos { get; set; }
 1132    public decimal LiquidoPagable { get; set; }
 33
 34    // Datos bancarios
 2535    public ReciboDatosBancariosDto DatosBancarios { get; set; } = new();
 36}
 37
 38public class ReciboDatosBancariosDto
 39{
 40    public string? Banco { get; set; }
 41    public string? Cuenta { get; set; }
 42    public string? Observacion { get; set; }
 43}