< Summary

Information
Class: FAU.Entidades.LiquidacionResumen
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/LiquidacionResumen.cs
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 38
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_PeriodoId()100%11100%
get_Version()100%11100%
get_ProgramaId()100%11100%
get_RegimenId()100%11100%
get_Rubro083()100%11100%
get_TotalImporte()100%11100%
get_Descripcion()100%11100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2using System.ComponentModel.DataAnnotations.Schema;
 3
 4namespace FAU.Entidades;
 5
 6[Table("liquidacion_resumenes")]
 7public class LiquidacionResumen
 8{
 9    [Key]
 10    [Column("id")]
 111    public long Id { get; set; }
 12
 13    [Required]
 14    [Column("periodo_id")]
 4415    public long PeriodoId { get; set; }
 16
 17    [Required]
 18    [Column("version")]
 4419    public int Version { get; set; }
 20
 21    [Column("programa_id")]
 122    public long? ProgramaId { get; set; }
 23
 24    [Column("regimen_id")]
 125    public long? RegimenId { get; set; }
 26
 27    [Required]
 28    [Column("rubro_083")]
 4529    public bool Rubro083 { get; set; }
 30
 31    [Required]
 32    [Column("total_importe", TypeName = "numeric(14,2)")]
 4533    public decimal TotalImporte { get; set; }
 34
 35    [MaxLength(100)]
 36    [Column("descripcion")]
 4437    public string? Descripcion { get; set; }
 38}