< Summary

Information
Class: FAU.Logica.DTOs.CrearTablaPermanenciaRequest
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CrearTablaPermanenciaRequest.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 24
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_EscalafonId()100%11100%
get_AniosDesde()100%11100%
get_AniosHasta()100%11100%
get_Porcentaje()100%11100%
get_MontoFijo()100%11100%
get_VigenteDesde()100%11100%
get_VigenteHasta()100%11100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace FAU.Logica.DTOs;
 4
 5public class CrearTablaPermanenciaRequest
 6{
 7    [Required]
 178    public long EscalafonId { get; set; }
 9
 10    [Required]
 11    [Range(0, short.MaxValue)]
 2112    public short AniosDesde { get; set; }
 13
 14    [Required]
 15    [Range(0, short.MaxValue)]
 1616    public short AniosHasta { get; set; }
 17
 2018    public decimal? Porcentaje { get; set; }
 719    public decimal? MontoFijo { get; set; }
 20
 21    [Required]
 922    public DateTime VigenteDesde { get; set; }
 723    public DateTime? VigenteHasta { get; set; }
 24}