Avance GestionPersonalWeb

This commit is contained in:
2026-02-13 13:36:38 +01:00
parent 3372b23f3b
commit 5cac63420e
8 changed files with 845 additions and 87 deletions

View File

@@ -1,6 +1,7 @@
using bdAntifraude.dbcontext;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -9,11 +10,27 @@ namespace bdAntifraude.db
{
public partial class TRAMOSSILTRA
{
[NotMapped]
public object DESCRIPCIONTRAMOXML
{
get
{
return this.IDPERIODONavigation.IDTIPOLIQUIDACIONNavigation.VALORALFABETICO1;
if (this.IDPERIODONavigation != null)
{
if (this.IDPERIODONavigation.IDTIPOLIQUIDACIONNavigation != null)
{
return this.IDPERIODONavigation.IDTIPOLIQUIDACIONNavigation.VALORALFABETICO1;
}
else
{
return null;
}
}
else
{
return null;
}
}
}
}