30 lines
634 B
C#
30 lines
634 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using tsUtilidades.Extensiones;
|
|
|
|
namespace bdGrupoSanchoToro.db
|
|
{
|
|
public partial class codigospostales
|
|
{
|
|
[NotMapped]
|
|
public virtual string Provincia
|
|
{
|
|
get
|
|
{
|
|
return this.CodigoMunicipioNavigation.CodigoProvinciaNavigation.Nombre;
|
|
}
|
|
}
|
|
[NotMapped]
|
|
public virtual string Poblacion
|
|
{
|
|
get
|
|
{
|
|
return this.CodigoMunicipioNavigation.Nombre;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|