< Summary

Information
Class: FAU.Logica.DTOs.PersonalDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/PersonalDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 41
Coverable lines: 41
Total lines: 65
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

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3/// <summary>
 4/// DTO para retornar información de personal
 5/// </summary>
 6public class PersonalDto
 7{
 08    public long Id { get; set; }
 9
 10    // Datos Personales
 011    public long PersonaId { get; set; }
 012    public string Cedula { get; set; } = string.Empty;
 013    public string PrimerNombre { get; set; } = string.Empty;
 014    public string? SegundoNombre { get; set; }
 015    public string PrimerApellido { get; set; } = string.Empty;
 016    public string? SegundoApellido { get; set; }
 017    public string NombreCompleto { get; set; } = string.Empty;
 018    public DateTime? FechaNacimiento { get; set; }
 019    public string? Email { get; set; }
 020    public string? Telefono { get; set; }
 021    public string? Direccion { get; set; }
 22
 23    // Datos Laborales
 024    public string Estado { get; set; } = string.Empty; // activo, inactivo
 025    public DateTime FechaInicio { get; set; }
 026    public DateTime? FechaFin { get; set; }
 27
 28    // Catálogos
 029    public long RegimenId { get; set; }
 030    public string RegimenDenominacion { get; set; } = string.Empty;
 31
 032    public long EscalafonId { get; set; }
 033    public string EscalafonCodigo { get; set; } = string.Empty;
 034    public string EscalafonDenominacion { get; set; } = string.Empty;
 35
 036    public long GradoId { get; set; }
 037    public string GradoCodigo { get; set; } = string.Empty;
 038    public string GradoDenominacion { get; set; } = string.Empty;
 39
 040    public long SituacionId { get; set; }
 041    public string SituacionCodigo { get; set; } = string.Empty;
 042    public string SituacionDenominacion { get; set; } = string.Empty;
 43
 044    public long ProgramaId { get; set; }
 045    public string ProgramaCodigo { get; set; } = string.Empty;
 046    public string ProgramaDenominacion { get; set; } = string.Empty;
 47
 048    public long UnidadId { get; set; }
 049    public string UnidadCodigo { get; set; } = string.Empty;
 050    public string UnidadDenominacion { get; set; } = string.Empty;
 51
 052    public long? SubUnidadId { get; set; }
 053    public string? SubUnidadCodigo { get; set; }
 054    public string? SubUnidadDenominacion { get; set; }
 55
 56    // Compensaciones
 057    public decimal? RiesgoVuelo { get; set; }
 058    public string? PrimaTecnica { get; set; }
 059    public string? PrimaSolidariaFamiliar { get; set; }
 060    public int? AniosInactivos { get; set; }
 061    public string? Observaciones { get; set; }
 62
 063    public DateTime FechaActualizacion { get; set; }
 64}
 65