2026-01-30 02

This commit is contained in:
2026-01-30 11:09:47 +01:00
parent 9e0f4bb6fe
commit 12039e9ae4
26 changed files with 5703 additions and 21 deletions

View File

@@ -29,6 +29,8 @@ public partial class apuntes
public int? idConciliacion { get; set; }
public int? idAplicacion { get; set; }
public virtual asientos idAsientoNavigation { get; set; } = null!;
public virtual conceptosapuntes? idConceptoNavigation { get; set; }

View File

@@ -17,28 +17,34 @@ public partial class articulos
public int? idProveedor { get; set; }
public string? NumeroFraCompra { get; set; }
public DateOnly? FechaCompra { get; set; }
public DateOnly? FechaFinGarantia { get; set; }
public DateOnly? FechaAlta { get; set; }
public DateOnly? FechaBaja { get; set; }
public string? Observaciones { get; set; }
public int? idDetalleFra { get; set; }
public double? PrecioCompra { get; set; }
public int? idDetalleFraVenta { get; set; }
public int? idFichero { get; set; }
public string? Averias { get; set; }
public string? Matricula { get; set; }
public string? Observaciones { get; set; }
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
public virtual ICollection<expedientesarticulos> expedientesarticulos { get; set; } = new List<expedientesarticulos>();
public virtual gruasparticulares? gruasparticulares { get; set; }
public virtual detallesfacturas? idDetalleFraNavigation { get; set; }
public virtual detallesfacturasrecibidas? idDetalleFraVentaNavigation { get; set; }
public virtual ficheros? idFicheroNavigation { get; set; }
public virtual productos? idProductoNavigation { get; set; }

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class desglosetiposofertas
{
public int idDesglose { get; set; }
public int idProducto { get; set; }
public bool Obligatorio { get; set; }
public int idTipoOferta { get; set; }
public virtual productos idProductoNavigation { get; set; } = null!;
public virtual tiposofertas idTipoOfertaNavigation { get; set; } = null!;
}

View File

@@ -29,6 +29,8 @@ public partial class detallesfacturas
public int? idDetalleRTF { get; set; }
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
public virtual detallepresupuesto? idDetallePresupuestoNavigation { get; set; }
public virtual ficheros? idDetalleRTFNavigation { get; set; }

View File

@@ -23,6 +23,8 @@ public partial class detallesfacturasrecibidas
public string? Observaciones { get; set; }
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
public virtual facturasrecibidas idFacturaNavigation { get; set; } = null!;
public virtual productos idProductoNavigation { get; set; } = null!;

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class expedientesarticulos
{
public int idExpediente { get; set; }
public string? Descripcion { get; set; }
public DateTime? Fecha { get; set; }
public int Tipo { get; set; }
public int? Aplicacion { get; set; }
public int? idAplicacion { get; set; }
public int? idFichero { get; set; }
public int? idEntidad { get; set; }
public int? idUsuario { get; set; }
public bool EsAdvertencia { get; set; }
public virtual articulos? idEntidadNavigation { get; set; }
public virtual ficheros? idFicheroNavigation { get; set; }
public virtual usuarios? idUsuarioNavigation { get; set; }
}

View File

@@ -39,6 +39,8 @@ public partial class ficheros
public virtual ICollection<empresas> empresasidLogo2Navigation { get; set; } = new List<empresas>();
public virtual ICollection<expedientesarticulos> expedientesarticulos { get; set; } = new List<expedientesarticulos>();
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();

View File

@@ -79,6 +79,8 @@ public partial class productos
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
public virtual ICollection<desglosetiposofertas> desglosetiposofertas { get; set; } = new List<desglosetiposofertas>();
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class tiposofertas
{
public int idTipoOferta { get; set; }
public string Codigo { get; set; } = null!;
public int Tipo { get; set; }
public string Descripcion { get; set; } = null!;
public bool Opcional_ElementoGrua { get; set; }
public bool Opcional_Repuesto { get; set; }
public bool Opcional_OtrosProductos { get; set; }
public bool Opcional_Consumibles { get; set; }
public bool Opcional_Servicio { get; set; }
public virtual ICollection<desglosetiposofertas> desglosetiposofertas { get; set; } = new List<desglosetiposofertas>();
}

View File

@@ -47,6 +47,8 @@ public partial class usuarios
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
public virtual ICollection<expedientesarticulos> expedientesarticulos { get; set; } = new List<expedientesarticulos>();
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
public virtual ICollection<extractosbancarios> extractosbancarios { get; set; } = new List<extractosbancarios>();