< Summary

Information
Class: FAU.Entidades.InstructivoPsf
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/InstructivoPsf.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 29
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_NumeroCategoria()100%11100%
get_Descripcion()100%11100%
get_Importe()100%11100%
get_VigenteDesde()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/InstructivoPsf.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2using System.ComponentModel.DataAnnotations.Schema;
 3
 4namespace FAU.Entidades;
 5
 6[Table("instructivo_psf")]
 7public class InstructivoPsf
 8{
 9    [Key]
 10    [Column("id")]
 4011    public long Id { get; set; }
 12
 13    [Required]
 14    [Column("numero_categoria")]
 6115    public short NumeroCategoria { get; set; }
 16
 17    [Required]
 18    [MaxLength(80)]
 19    [Column("descripcion")]
 10520    public string Descripcion { get; set; } = string.Empty;
 21
 22    [Required]
 23    [Column("importe", TypeName = "numeric(14,2)")]
 6024    public decimal Importe { get; set; }
 25
 26    [Required]
 27    [Column("vigente_desde", TypeName = "date")]
 5828    public DateTime VigenteDesde { get; set; }
 29}