< Summary

Information
Class: FAU.Logica.DTOs.PeriodoDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/PeriodoDto.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_Id()100%11100%
get_Anio()100%11100%
get_Mes()100%11100%
get_Estado()100%11100%
get_SnapshotId()100%11100%
get_FechaApertura()100%11100%
get_UsuarioApertura()100%11100%
get_HashSnapshot()100%11100%
get_FechaCierreInsumos()100%11100%
get_UsuarioCierreInsumos()100%11100%
get_FechaCalculo()100%11100%
get_UsuarioCalculo()100%11100%
get_FechaCierre()100%11100%
get_UsuarioCierre()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class PeriodoDto
 4{
 85    public long Id { get; set; }
 76    public short Anio { get; set; }
 77    public short Mes { get; set; }
 198    public string Estado { get; set; } = string.Empty;
 79    public long SnapshotId { get; set; }
 710    public DateTime FechaApertura { get; set; }
 711    public string? UsuarioApertura { get; set; }
 1412    public string HashSnapshot { get; set; } = string.Empty;
 713    public DateTime? FechaCierreInsumos { get; set; }
 714    public string? UsuarioCierreInsumos { get; set; }
 715    public DateTime? FechaCalculo { get; set; }
 716    public string? UsuarioCalculo { get; set; }
 717    public DateTime? FechaCierre { get; set; }
 718    public string? UsuarioCierre { get; set; }
 19}