actualizacion gestionWeb

This commit is contained in:
2026-04-23 14:23:37 +02:00
parent 9b4e8071ac
commit d066628241
6 changed files with 119 additions and 31 deletions

View File

@@ -1631,11 +1631,19 @@ namespace bdAntifraude.db
}
}
[NotMapped]
public double IMPORTESEGURO
public double? IMPORTESEGURO
{
get
{
return (double)(this.IDPERSONANavigation.SEGUROACCIDENTE);
if (this.IDPERSONANavigation != null)
{
return (double)(this.IDPERSONANavigation.SEGUROACCIDENTE);
}
else
{
return 0;
}
}
}