< 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: 18
Uncovered lines: 0
Coverable lines: 18
Total lines: 23
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%
get_FechaEnvioMDN()100%11100%
get_UsuarioEnvioMDN()100%11100%
get_FechaDescuentosPersonales()100%11100%
get_UsuarioDescuentosPersonales()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{
 75    public long Id { get; set; }
 66    public short Anio { get; set; }
 67    public short Mes { get; set; }
 168    public string Estado { get; set; } = string.Empty;
 69    public long SnapshotId { get; set; }
 610    public DateTime FechaApertura { get; set; }
 611    public string? UsuarioApertura { get; set; }
 1212    public string HashSnapshot { get; set; } = string.Empty;
 613    public DateTime? FechaCierreInsumos { get; set; }
 614    public string? UsuarioCierreInsumos { get; set; }
 615    public DateTime? FechaCalculo { get; set; }
 616    public string? UsuarioCalculo { get; set; }
 617    public DateTime? FechaCierre { get; set; }
 618    public string? UsuarioCierre { get; set; }
 619    public DateTime? FechaEnvioMDN { get; set; }
 620    public string? UsuarioEnvioMDN { get; set; }
 621    public DateTime? FechaDescuentosPersonales { get; set; }
 622    public string? UsuarioDescuentosPersonales { get; set; }
 23}