Versión 2
This commit is contained in:
29
bdGrupoSanchoToro/db/modelosgruas.cs
Normal file
29
bdGrupoSanchoToro/db/modelosgruas.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class modelosgruas
|
||||
{
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public string Modelo { get; set; } = null!;
|
||||
|
||||
public int idMarca { get; set; }
|
||||
|
||||
public DateTime? FechaAlta { get; set; }
|
||||
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
|
||||
public virtual marcasgruas idMarcaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
|
||||
|
||||
public virtual ICollection<tablaplumas> tablaplumas { get; set; } = new List<tablaplumas>();
|
||||
|
||||
public virtual ICollection<versiones> versiones { get; set; } = new List<versiones>();
|
||||
}
|
||||
Reference in New Issue
Block a user