agregado procesos y bd clases
This commit is contained in:
18
bdAsegasa/Extensiones/tiposgestionsiniestros.cs
Normal file
18
bdAsegasa/Extensiones/tiposgestionsiniestros.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace bdAsegasa.db
|
||||
{
|
||||
public partial class tiposgestionsiniestros
|
||||
{
|
||||
public string DescripcionDetallada
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = $"{this.Descripcion} *{this.Codigo} * ";
|
||||
if (this.idDestinatario.HasValue)
|
||||
{
|
||||
s += $"(DESTINATARIO: {this.idDestinatarioNavigation?.Descripcion})";
|
||||
}
|
||||
return s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user