< Summary

Information
Class: FAU.Logica.DTOs.ActualizarNovedadPeriodoRequest
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/ActualizarNovedadPeriodoRequest.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 15
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_FechaDesde()100%11100%
get_FechaHasta()100%11100%
get_PorcentajeSubsidio()100%11100%
get_Observaciones()100%11100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace FAU.Logica.DTOs;
 4
 5public class ActualizarNovedadPeriodoRequest
 6{
 157    public DateTime? FechaDesde { get; set; }
 8
 129    public DateTime? FechaHasta { get; set; }
 10
 11    [Range(0, 100)]
 2012    public decimal? PorcentajeSubsidio { get; set; }
 13
 1514    public string? Observaciones { get; set; }
 15}