< Summary

Information
Class: FAU.Logica.DTOs.CalculoItemDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CalculoItemDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 7
Coverable lines: 7
Total lines: 12
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_Cedula()100%210%
get_Version()100%210%
get_CodigoConcepto()100%210%
get_NombreConcepto()100%210%
get_Importe()100%210%
get_RubroContable()100%210%
get_ObjetoGasto()100%210%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CalculoItemDto.cs

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class CalculoItemDto
 4{
 05    public string Cedula { get; set; } = string.Empty;
 06    public int Version { get; set; }
 07    public string CodigoConcepto { get; set; } = string.Empty;
 08    public string NombreConcepto { get; set; } = string.Empty;
 09    public decimal Importe { get; set; }
 010    public string RubroContable { get; set; } = string.Empty;
 011    public string? ObjetoGasto { get; set; }
 12}