< Summary

Information
Class: FAU.Entidades.TablaHogarConstituido
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/TablaHogarConstituido.cs
Line coverage
80%
Covered lines: 4
Uncovered lines: 1
Coverable lines: 5
Total lines: 27
Line coverage: 80%
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%210%
get_HastaHaberes()100%11100%
get_Importe()100%11100%
get_RefPorcentaje()100%11100%
get_VigenteDesde()100%11100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2using System.ComponentModel.DataAnnotations.Schema;
 3
 4namespace FAU.Entidades;
 5
 6[Table("tabla_hogar_constituido")]
 7public class TablaHogarConstituido
 8{
 9    [Key]
 10    [Column("id")]
 011    public long Id { get; set; }
 12
 13    [Column("hasta_haberes", TypeName = "numeric(14,2)")]
 414    public decimal? HastaHaberes { get; set; }
 15
 16    [Required]
 17    [Column("importe", TypeName = "numeric(14,2)")]
 318    public decimal Importe { get; set; }
 19
 20    [MaxLength(10)]
 21    [Column("ref_porcentaje")]
 222    public string? RefPorcentaje { get; set; }
 23
 24    [Required]
 25    [Column("vigente_desde", TypeName = "date")]
 226    public DateTime VigenteDesde { get; set; }
 27}