git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C204
This commit is contained in:
parent
37a00f4fcd
commit
b855ed97a6
2 changed files with 21 additions and 1 deletions
|
|
@ -51,6 +51,18 @@ namespace AYA.SlnSinortModel.Sinort
|
|||
[StringLength(200)]
|
||||
public string NumeroPublicacionVersion { get; set; }
|
||||
|
||||
public bool? Estado { get; set; }
|
||||
|
||||
public DateTime? FechaCreacion { get; set; }
|
||||
|
||||
[StringLength(200)]
|
||||
public string UsuarioCreacion { get; set; }
|
||||
|
||||
public DateTime? FechaModificacion { get; set; }
|
||||
|
||||
[StringLength(200)]
|
||||
public string UsuarioModificacion { get; set; }
|
||||
|
||||
public virtual Aplicacion Aplicacion { get; set; }
|
||||
|
||||
public virtual Contenido Contenido { get; set; }
|
||||
|
|
@ -59,7 +71,7 @@ namespace AYA.SlnSinortModel.Sinort
|
|||
|
||||
public virtual Emisor Emisor { get; set; }
|
||||
|
||||
public virtual Estado Estado { get; set; }
|
||||
public virtual Estado Estado1 { get; set; }
|
||||
|
||||
public virtual GrupoTematico GrupoTematico { get; set; }
|
||||
|
||||
|
|
|
|||
|
|
@ -591,6 +591,14 @@ namespace AYA.SlnSinortModel.Sinort
|
|||
.Property(e => e.NumeroPublicacionVersion)
|
||||
.IsUnicode(false);
|
||||
|
||||
modelBuilder.Entity<FichaTecnica>()
|
||||
.Property(e => e.UsuarioCreacion)
|
||||
.IsUnicode(false);
|
||||
|
||||
modelBuilder.Entity<FichaTecnica>()
|
||||
.Property(e => e.UsuarioModificacion)
|
||||
.IsUnicode(false);
|
||||
|
||||
modelBuilder.Entity<FichaTecnica>()
|
||||
.HasMany(e => e.FichaTecnicaPalabraClave)
|
||||
.WithRequired(e => e.FichaTecnica)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue