< 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: 9
Uncovered lines: 0
Coverable lines: 9
Total lines: 30
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_GradoId()100%11100%
get_MesesDesde()100%11100%
get_MesesHasta()100%11100%
get_MontoFijo()100%11100%
get_Porcentaje()100%11100%
get_AplicaRiesgoVuelo()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]
 1711    public long GradoId { get; set; }
 12
 13    [Required]
 14    [Range(0, short.MaxValue)]
 2115    public short MesesDesde { get; set; }
 16
 17    [Required]
 18    [Range(0, short.MaxValue)]
 1619    public short MesesHasta { get; set; }
 20
 2021    public decimal? MontoFijo { get; set; }
 1122    public decimal? Porcentaje { get; set; }
 23
 24    [Required]
 1125    public bool AplicaRiesgoVuelo { get; set; }
 26
 27    [Required]
 928    public DateTime VigenteDesde { get; set; }
 729    public DateTime? VigenteHasta { get; set; }
 30}