22 lines
525 B
C#
22 lines
525 B
C#
namespace bdAsegasa.db
|
|
{
|
|
public partial class vf_siniestrosextendidos
|
|
{
|
|
public long NumeroGestionesNN => this.NumeroGestiones ?? 1;
|
|
|
|
public bool Abierto => !this.FechaCierre.HasValue;
|
|
|
|
public string AñoMes
|
|
{
|
|
get
|
|
{
|
|
if (this.FechaAccidente.HasValue)
|
|
{
|
|
return $"{this.FechaAccidente.Value.Year}-{this.FechaAccidente.Value.Month:D2}";
|
|
}
|
|
return "";
|
|
}
|
|
}
|
|
}
|
|
}
|