< Summary

Information
Class: FAU.Entidades.BrouExcepcionDto
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/BrouPreviewDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 25
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_Cedula()100%11100%
get_Nombre()100%11100%
get_Liquido()100%11100%
get_Motivo()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Entidades;
 2
 3public class BrouPreviewDto
 4{
 5    public List<BrouFilaDto> Filas { get; set; } = new();
 6    public List<BrouExcepcionDto> Excepciones { get; set; } = new();
 7    public decimal TotalLiquido { get; set; }
 8    public int CantidadRegistros { get; set; }
 9}
 10
 11public class BrouFilaDto
 12{
 13    public string Cedula { get; set; } = string.Empty;
 14    public string NumeroCuenta { get; set; } = string.Empty;
 15    public decimal Liquido { get; set; }
 16    public string Regimen { get; set; } = string.Empty;
 17}
 18
 19public class BrouExcepcionDto
 20{
 521    public string Cedula { get; set; } = string.Empty;
 422    public string Nombre { get; set; } = string.Empty;
 223    public decimal Liquido { get; set; }
 424    public string Motivo { get; set; } = string.Empty;
 25}