< 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
0%
Covered lines: 0
Uncovered lines: 8
Coverable lines: 8
Total lines: 38
Line coverage: 0%
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_PeriodoId()100%210%
get_Version()100%210%
get_ProgramaId()100%210%
get_RegimenId()100%210%
get_Rubro083()100%210%
get_TotalImporte()100%210%
get_Descripcion()100%210%

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")]
 011    public long Id { get; set; }
 12
 13    [Required]
 14    [Column("periodo_id")]
 015    public long PeriodoId { get; set; }
 16
 17    [Required]
 18    [Column("version")]
 019    public int Version { get; set; }
 20
 21    [Column("programa_id")]
 022    public long? ProgramaId { get; set; }
 23
 24    [Column("regimen_id")]
 025    public long? RegimenId { get; set; }
 26
 27    [Required]
 28    [Column("rubro_083")]
 029    public bool Rubro083 { get; set; }
 30
 31    [Required]
 32    [Column("total_importe", TypeName = "numeric(14,2)")]
 033    public decimal TotalImporte { get; set; }
 34
 35    [MaxLength(100)]
 36    [Column("descripcion")]
 037    public string? Descripcion { get; set; }
 38}