< Summary

Information
Class: FAU.Entidades.BrouFilaDto
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_NumeroCuenta()100%11100%
get_Liquido()100%11100%
get_Regimen()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{
 1713    public string Cedula { get; set; } = string.Empty;
 1414    public string NumeroCuenta { get; set; } = string.Empty;
 1415    public decimal Liquido { get; set; }
 1416    public string Regimen { get; set; } = string.Empty;
 17}
 18
 19public class BrouExcepcionDto
 20{
 21    public string Cedula { get; set; } = string.Empty;
 22    public string Nombre { get; set; } = string.Empty;
 23    public decimal Liquido { get; set; }
 24    public string Motivo { get; set; } = string.Empty;
 25}