2026/07/01-01

This commit is contained in:
2026-01-27 09:26:42 +01:00
parent c14bb09eb2
commit 415b281213
19 changed files with 1618 additions and 152 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class familias
{
public int idFamilia { get; set; }
public string? Codigo { get; set; }
public string? Descripcion { get; set; }
public int? idUsuario { get; set; }
public string? CuentaContableVenta { get; set; }
public string? CuentaContableVentaAlquiler { get; set; }
public string? CuentaContableCompra { get; set; }
public string? CuentaContableCompraAlquiler { get; set; }
public virtual usuarios? idUsuarioNavigation { get; set; }
public virtual ICollection<productos> productos { get; set; } = new List<productos>();
}

View File

@@ -25,5 +25,5 @@ public partial class modelosgruas
public virtual ICollection<tablaplumas> tablaplumas { get; set; } = new List<tablaplumas>();
public virtual ICollection<versiones> versiones { get; set; } = new List<versiones>();
public virtual ICollection<versionesgruas> versionesgruas { get; set; } = new List<versionesgruas>();
}

View File

@@ -9,6 +9,8 @@ public partial class productos
{
public int idProducto { get; set; }
public string Codigo { get; set; } = null!;
public string? DescripcionAbreviada { get; set; }
public string Descripcion { get; set; } = null!;
@@ -89,6 +91,8 @@ public partial class productos
public virtual empresas idEmpresaNavigation { get; set; } = null!;
public virtual familias? idFamiliaNavigation { get; set; }
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }

View File

@@ -19,5 +19,5 @@ public partial class tablaalturas
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
public virtual versiones? idVersionNavigation { get; set; }
public virtual versionesgruas? idVersionNavigation { get; set; }
}

View File

@@ -55,6 +55,8 @@ public partial class usuarios
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
public virtual ICollection<familias> familias { get; set; } = new List<familias>();
public virtual gruposusuarios? idGrupoNavigation { get; set; }
public virtual enumeraciones? idTemaNavigation { get; set; }

View File

@@ -5,7 +5,7 @@ using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class versiones
public partial class versionesgruas
{
public int idVersion { get; set; }