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 ""; } } } }