19 lines
464 B
C#
19 lines
464 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|