< Summary

Information
Class: FAU.Logica.DTOs.LiquidacionResumenDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/LiquidacionResumenDto.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 11
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_Version()100%11100%
get_ProgramaId()100%11100%
get_RegimenId()100%11100%
get_Rubro083()100%11100%
get_TotalImporte()100%11100%
get_Descripcion()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class LiquidacionResumenDto
 4{
 25    public int Version { get; set; }
 16    public long? ProgramaId { get; set; }
 17    public long? RegimenId { get; set; }
 28    public bool Rubro083 { get; set; }
 29    public decimal TotalImporte { get; set; }
 110    public string? Descripcion { get; set; }
 11}