Agregar archivos de proyecto.
This commit is contained in:
89
bdGrupoSanchoToro/db/albaranes.cs
Normal file
89
bdGrupoSanchoToro/db/albaranes.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class albaranes
|
||||
{
|
||||
public int idAlbaran { get; set; }
|
||||
|
||||
public DateOnly Fecha { get; set; }
|
||||
|
||||
public int? idPresupuesto { get; set; }
|
||||
|
||||
public int? idValeTransporte { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public DateTime? FechaCarga { get; set; }
|
||||
|
||||
public string? LugarCarga { get; set; }
|
||||
|
||||
public string? Cargadores { get; set; }
|
||||
|
||||
public DateTime? FechaDescarga { get; set; }
|
||||
|
||||
public string? LugarDescarga { get; set; }
|
||||
|
||||
public string? Descargadores { get; set; }
|
||||
|
||||
public double Peso { get; set; }
|
||||
|
||||
public double Volumen { get; set; }
|
||||
|
||||
public double PorcentajeTransporte { get; set; }
|
||||
|
||||
public double CostoEstimadoTransporte { get; set; }
|
||||
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public int? idAlmacenOrigen { get; set; }
|
||||
|
||||
public string? CodigoPostalCarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioCarga { get; set; }
|
||||
|
||||
public string? CodigoPostalDescarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioDescarga { get; set; }
|
||||
|
||||
public string? Telefono1Carga { get; set; }
|
||||
|
||||
public string? Telefono2Carga { get; set; }
|
||||
|
||||
public string? EmailCarga { get; set; }
|
||||
|
||||
public string? Telefono1Descarga { get; set; }
|
||||
|
||||
public string? Telefono2Descarga { get; set; }
|
||||
|
||||
public string? EmailDescarga { get; set; }
|
||||
|
||||
public int? idAlmacenDestino { get; set; }
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public int NumeroBultos { get; set; }
|
||||
|
||||
public bool TransporteExterno { get; set; }
|
||||
|
||||
public DateOnly? FechaPrevistaFinSubalquiler { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioCargaNavigation { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioDescargaNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
|
||||
|
||||
public virtual almacenes? idAlmacenDestinoNavigation { get; set; }
|
||||
|
||||
public virtual almacenes? idAlmacenOrigenNavigation { get; set; }
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual presupuestos? idPresupuestoNavigation { get; set; }
|
||||
|
||||
public virtual usuarios idUsuarioNavigation { get; set; } = null!;
|
||||
}
|
||||
41
bdGrupoSanchoToro/db/almacenes.cs
Normal file
41
bdGrupoSanchoToro/db/almacenes.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class almacenes
|
||||
{
|
||||
public int idAlmacen { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? Encargados { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<albaranes> albaranesidAlmacenDestinoNavigation { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<albaranes> albaranesidAlmacenOrigenNavigation { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual empresas idEmpresaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<stocks> stocks { get; set; } = new List<stocks>();
|
||||
}
|
||||
45
bdGrupoSanchoToro/db/articulos.cs
Normal file
45
bdGrupoSanchoToro/db/articulos.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class articulos
|
||||
{
|
||||
public int idArticulo { get; set; }
|
||||
|
||||
public int? idProducto { get; set; }
|
||||
|
||||
public string? CodigoArticulo { get; set; }
|
||||
|
||||
public string? NumeroSerie { get; set; }
|
||||
|
||||
public int? idProveedor { get; set; }
|
||||
|
||||
public string? NumeroFraCompra { get; set; }
|
||||
|
||||
public DateOnly? FechaCompra { get; set; }
|
||||
|
||||
public DateOnly? FechaFinGarantia { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public double? PrecioCompra { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public string? Averias { get; set; }
|
||||
|
||||
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
|
||||
|
||||
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual productos? idProductoNavigation { get; set; }
|
||||
|
||||
public virtual entidades? idProveedorNavigation { get; set; }
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/autorizacionesgrupos.cs
Normal file
33
bdGrupoSanchoToro/db/autorizacionesgrupos.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class autorizacionesgrupos
|
||||
{
|
||||
public int idAutorizaciongrupo { get; set; }
|
||||
|
||||
public int? idGrupo { get; set; }
|
||||
|
||||
public int? idPermiso { get; set; }
|
||||
|
||||
public bool PermitirConsultas { get; set; }
|
||||
|
||||
public bool PermitirNuevos { get; set; }
|
||||
|
||||
public bool PermitirModificaciones { get; set; }
|
||||
|
||||
public bool PermitirEliminaciones { get; set; }
|
||||
|
||||
public bool PermitirImpresiones { get; set; }
|
||||
|
||||
public bool PermitirExportar { get; set; }
|
||||
|
||||
public bool OtrosPermisos { get; set; }
|
||||
|
||||
public virtual gruposusuarios? idGrupoNavigation { get; set; }
|
||||
|
||||
public virtual permisos? idPermisoNavigation { get; set; }
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/autorizacionesusuarios.cs
Normal file
33
bdGrupoSanchoToro/db/autorizacionesusuarios.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class autorizacionesusuarios
|
||||
{
|
||||
public int idAutorizaciones { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int idPermiso { get; set; }
|
||||
|
||||
public bool PermitirConsultas { get; set; }
|
||||
|
||||
public bool PermitirNuevos { get; set; }
|
||||
|
||||
public bool PermitirModificaciones { get; set; }
|
||||
|
||||
public bool PermitirEliminaciones { get; set; }
|
||||
|
||||
public bool PermitirImpresiones { get; set; }
|
||||
|
||||
public bool PermitirExportar { get; set; }
|
||||
|
||||
public bool OtrosPermisos { get; set; }
|
||||
|
||||
public virtual permisos idPermisoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
17
bdGrupoSanchoToro/db/bancos.cs
Normal file
17
bdGrupoSanchoToro/db/bancos.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class bancos
|
||||
{
|
||||
public string Codigo { get; set; } = null!;
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public string? BIC { get; set; }
|
||||
|
||||
public bool? Obsoleto { get; set; }
|
||||
}
|
||||
39
bdGrupoSanchoToro/db/cajas.cs
Normal file
39
bdGrupoSanchoToro/db/cajas.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class cajas
|
||||
{
|
||||
public int idCaja { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public int? idPermiso { get; set; }
|
||||
|
||||
public string? IBAN { get; set; }
|
||||
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
|
||||
public double SaldoAlCierre { get; set; }
|
||||
|
||||
public DateTime? FechaCierre { get; set; }
|
||||
|
||||
public string? SufijoBancario { get; set; }
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public virtual ICollection<conciliacionesbancarias> conciliacionesbancarias { get; set; } = new List<conciliacionesbancarias>();
|
||||
|
||||
public virtual ICollection<extractosbancarios> extractosbancarios { get; set; } = new List<extractosbancarios>();
|
||||
|
||||
public virtual empresas idEmpresaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual permisos? idPermisoNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
}
|
||||
19
bdGrupoSanchoToro/db/codigospostales.cs
Normal file
19
bdGrupoSanchoToro/db/codigospostales.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class codigospostales
|
||||
{
|
||||
public int idCodigoPostal { get; set; }
|
||||
|
||||
public string CodigoPostal { get; set; } = null!;
|
||||
|
||||
public string CodigoMunicipio { get; set; } = null!;
|
||||
|
||||
public string? DescripcionAdicional { get; set; }
|
||||
|
||||
public virtual municipios CodigoMunicipioNavigation { get; set; } = null!;
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/conciliacionesbancarias.cs
Normal file
33
bdGrupoSanchoToro/db/conciliacionesbancarias.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class conciliacionesbancarias
|
||||
{
|
||||
public int idConciliacion { get; set; }
|
||||
|
||||
public DateTime FechaConciliacion { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public double TotalMovimientosCaja { get; set; }
|
||||
|
||||
public double TotalMovimientosBancarios { get; set; }
|
||||
|
||||
public DateOnly FechaInicio { get; set; }
|
||||
|
||||
public DateOnly FechaFin { get; set; }
|
||||
|
||||
public int idCaja { get; set; }
|
||||
|
||||
public virtual cajas idCajaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientosbancarios> movimientosbancarios { get; set; } = new List<movimientosbancarios>();
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
}
|
||||
63
bdGrupoSanchoToro/db/correos.cs
Normal file
63
bdGrupoSanchoToro/db/correos.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class correos
|
||||
{
|
||||
public int idcorreo { get; set; }
|
||||
|
||||
public int? idcuenta { get; set; }
|
||||
|
||||
public string? Remitente { get; set; }
|
||||
|
||||
public string? Destinatario { get; set; }
|
||||
|
||||
public string? Copia { get; set; }
|
||||
|
||||
public string? CopiaOculta { get; set; }
|
||||
|
||||
public string? DireccionRespuesta { get; set; }
|
||||
|
||||
public string? Asunto { get; set; }
|
||||
|
||||
public string? Cuerpo { get; set; }
|
||||
|
||||
public string? RutaFicheroAdjunto { get; set; }
|
||||
|
||||
public int? idFicheroAdjunto { get; set; }
|
||||
|
||||
public DateTime? FechaCreacion { get; set; }
|
||||
|
||||
public DateTime? FechaEnvio { get; set; }
|
||||
|
||||
public DateTime? FechaUltimoIntento { get; set; }
|
||||
|
||||
public DateTime? FechaAnulacion { get; set; }
|
||||
|
||||
public DateTime? FechaAvisoError { get; set; }
|
||||
|
||||
public int? idAplicacion { get; set; }
|
||||
|
||||
public string? CodigoAplicacion { get; set; }
|
||||
|
||||
public bool Reciclable { get; set; }
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public string? MensajeError { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroAdjuntoNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual cuentascorreo? idcuentaNavigation { get; set; }
|
||||
}
|
||||
35
bdGrupoSanchoToro/db/cuentascorreo.cs
Normal file
35
bdGrupoSanchoToro/db/cuentascorreo.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class cuentascorreo
|
||||
{
|
||||
public int idCuenta { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public string? ServidorSMTP { get; set; }
|
||||
|
||||
public string? Remitente { get; set; }
|
||||
|
||||
public string? CuentaCorreo { get; set; }
|
||||
|
||||
public string? Password { get; set; }
|
||||
|
||||
public int? Puerto { get; set; }
|
||||
|
||||
public bool SSL { get; set; }
|
||||
|
||||
public bool Deshabilitada { get; set; }
|
||||
|
||||
public string? ResponderA { get; set; }
|
||||
|
||||
public int? idEmpresa { get; set; }
|
||||
|
||||
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
||||
|
||||
public virtual empresas? idEmpresaNavigation { get; set; }
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/detallepresupuesto.cs
Normal file
33
bdGrupoSanchoToro/db/detallepresupuesto.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class detallepresupuesto
|
||||
{
|
||||
public int idDetallePresupuesto { get; set; }
|
||||
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public int? idArticulo { get; set; }
|
||||
|
||||
public double Cantidad { get; set; }
|
||||
|
||||
public double Precio { get; set; }
|
||||
|
||||
public int idPresupuesto { get; set; }
|
||||
|
||||
public bool EsVenta { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual articulos? idArticuloNavigation { get; set; }
|
||||
|
||||
public virtual presupuestos idPresupuestoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/detallesalbaranes.cs
Normal file
33
bdGrupoSanchoToro/db/detallesalbaranes.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class detallesalbaranes
|
||||
{
|
||||
public int idDetalle { get; set; }
|
||||
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public int? idArticulo { get; set; }
|
||||
|
||||
public int idAlbaran { get; set; }
|
||||
|
||||
public double Cantidad { get; set; }
|
||||
|
||||
public double Peso { get; set; }
|
||||
|
||||
public double Volumen { get; set; }
|
||||
|
||||
public bool EsVenta { get; set; }
|
||||
|
||||
public bool IncluidoEnPresupuesto { get; set; }
|
||||
|
||||
public virtual albaranes idAlbaranNavigation { get; set; } = null!;
|
||||
|
||||
public virtual articulos? idArticuloNavigation { get; set; }
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
}
|
||||
41
bdGrupoSanchoToro/db/detallesfacturas.cs
Normal file
41
bdGrupoSanchoToro/db/detallesfacturas.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class detallesfacturas
|
||||
{
|
||||
public int idDetalle { get; set; }
|
||||
|
||||
public int idFactura { get; set; }
|
||||
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public int? idDetallePresupuesto { get; set; }
|
||||
|
||||
public double Cantidad { get; set; }
|
||||
|
||||
public double Precio { get; set; }
|
||||
|
||||
public bool EsVenta { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public int idTipoIVA { get; set; }
|
||||
|
||||
public double? PorcentajeIVA { get; set; }
|
||||
|
||||
public int? idDetalleRTF { get; set; }
|
||||
|
||||
public virtual detallepresupuesto? idDetallePresupuestoNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idDetalleRTFNavigation { get; set; }
|
||||
|
||||
public virtual facturas idFacturaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual enumeraciones idTipoIVANavigation { get; set; } = null!;
|
||||
}
|
||||
31
bdGrupoSanchoToro/db/detallesfacturasrecibidas.cs
Normal file
31
bdGrupoSanchoToro/db/detallesfacturasrecibidas.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class detallesfacturasrecibidas
|
||||
{
|
||||
public int idDetalle { get; set; }
|
||||
|
||||
public int idFactura { get; set; }
|
||||
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public double Cantidad { get; set; }
|
||||
|
||||
public double Precio { get; set; }
|
||||
|
||||
public int idTipoIva { get; set; }
|
||||
|
||||
public double? PorcentajeIVA { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual facturasrecibidas idFacturaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual enumeraciones idTipoIvaNavigation { get; set; } = null!;
|
||||
}
|
||||
29
bdGrupoSanchoToro/db/documentosfacturas.cs
Normal file
29
bdGrupoSanchoToro/db/documentosfacturas.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class documentosfacturas
|
||||
{
|
||||
public int idDocumento { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateTime? Fecha { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public int? idFactura { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public virtual facturas? idFacturaNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
29
bdGrupoSanchoToro/db/documentosfacturasrecibidas.cs
Normal file
29
bdGrupoSanchoToro/db/documentosfacturasrecibidas.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class documentosfacturasrecibidas
|
||||
{
|
||||
public int idDocumento { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateTime? Fecha { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public int? idFactura { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public virtual facturasrecibidas? idFacturaNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
31
bdGrupoSanchoToro/db/documentospresupuestos.cs
Normal file
31
bdGrupoSanchoToro/db/documentospresupuestos.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class documentospresupuestos
|
||||
{
|
||||
public int idDocumento { get; set; }
|
||||
|
||||
public int idPresupuesto { get; set; }
|
||||
|
||||
public int idTipoDocumento { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public DateTime? Fecha { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual presupuestos idPresupuestoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual enumeraciones idTipoDocumentoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios idUsuarioNavigation { get; set; } = null!;
|
||||
}
|
||||
45
bdGrupoSanchoToro/db/empresas.cs
Normal file
45
bdGrupoSanchoToro/db/empresas.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class empresas
|
||||
{
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public string RazonSocial { get; set; } = null!;
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int? idLogo1 { get; set; }
|
||||
|
||||
public int? idLogo2 { get; set; }
|
||||
|
||||
public string? Domicilio { get; set; }
|
||||
|
||||
public string? Poblacion { get; set; }
|
||||
|
||||
public string? CIF { get; set; }
|
||||
|
||||
public bool DescAmpliadaEnFE { get; set; }
|
||||
|
||||
public virtual ICollection<almacenes> almacenes { get; set; } = new List<almacenes>();
|
||||
|
||||
public virtual ICollection<cajas> cajas { get; set; } = new List<cajas>();
|
||||
|
||||
public virtual ICollection<cuentascorreo> cuentascorreo { get; set; } = new List<cuentascorreo>();
|
||||
|
||||
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
|
||||
|
||||
public virtual ficheros? idLogo1Navigation { get; set; }
|
||||
|
||||
public virtual ficheros? idLogo2Navigation { get; set; }
|
||||
|
||||
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
||||
|
||||
public virtual ICollection<productos> productos { get; set; } = new List<productos>();
|
||||
|
||||
public virtual ICollection<seriesfacturas> seriesfacturas { get; set; } = new List<seriesfacturas>();
|
||||
}
|
||||
91
bdGrupoSanchoToro/db/entidades.cs
Normal file
91
bdGrupoSanchoToro/db/entidades.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class entidades
|
||||
{
|
||||
public int idEntidad { get; set; }
|
||||
|
||||
public string? NIF { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Telefono3 { get; set; }
|
||||
|
||||
public string? FAX { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? IBAN { get; set; }
|
||||
|
||||
public int? idTipoPago { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public bool EsCliente { get; set; }
|
||||
|
||||
public bool EsProveedor { get; set; }
|
||||
|
||||
public string? PersonaContacto { get; set; }
|
||||
|
||||
public double Descuento { get; set; }
|
||||
|
||||
public DateOnly? FechaAlta { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int? idUsuarioCreador { get; set; }
|
||||
|
||||
public int? idUsuarioModificador { get; set; }
|
||||
|
||||
public string? Codigo_Cliente_Ant { get; set; }
|
||||
|
||||
public string? Codigo_Proveedor_Ant { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public int? idTipo { get; set; }
|
||||
|
||||
public int TipoImpresionAlbaranEntrega { get; set; }
|
||||
|
||||
public string? Email2 { get; set; }
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<albaranes> albaranes { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
|
||||
|
||||
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
||||
|
||||
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
|
||||
|
||||
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual empresas idEmpresaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual enumeraciones? idTipoPagoNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
}
|
||||
67
bdGrupoSanchoToro/db/enumeraciones.cs
Normal file
67
bdGrupoSanchoToro/db/enumeraciones.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class enumeraciones
|
||||
{
|
||||
public int idEnumeracion { get; set; }
|
||||
|
||||
public int idGrupoEnumeracion { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public string? ValorAlfabetico1 { get; set; }
|
||||
|
||||
public string? ValorAlfabetico2 { get; set; }
|
||||
|
||||
public double? ValorNumerico1 { get; set; }
|
||||
|
||||
public double? ValorNumerico2 { get; set; }
|
||||
|
||||
public int? Orden { get; set; }
|
||||
|
||||
public bool Oculto { get; set; }
|
||||
|
||||
public string? ValorAlfabetico3 { get; set; }
|
||||
|
||||
public string? ValorAlfabetico4 { get; set; }
|
||||
|
||||
public string? ValorAlfabeticoLargo { get; set; }
|
||||
|
||||
public double? ValorNumerico3 { get; set; }
|
||||
|
||||
public double? ValorNumerico4 { get; set; }
|
||||
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
|
||||
public DateTime? Fecha1 { get; set; }
|
||||
|
||||
public DateTime? Fecha2 { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual ICollection<detallesfacturasrecibidas> detallesfacturasrecibidas { get; set; } = new List<detallesfacturasrecibidas>();
|
||||
|
||||
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
||||
|
||||
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual ICollection<ficheros> ficheros { get; set; } = new List<ficheros>();
|
||||
|
||||
public virtual gruposenumeraciones idGrupoEnumeracionNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
||||
|
||||
public virtual ICollection<procesos> procesosidSubtipoNavigation { get; set; } = new List<procesos>();
|
||||
|
||||
public virtual ICollection<procesos> procesosidTipoNavigation { get; set; } = new List<procesos>();
|
||||
|
||||
public virtual ICollection<usuarios> usuarios { get; set; } = new List<usuarios>();
|
||||
}
|
||||
47
bdGrupoSanchoToro/db/eventos.cs
Normal file
47
bdGrupoSanchoToro/db/eventos.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class eventos
|
||||
{
|
||||
public int idEvento { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? PersonaContacto { get; set; }
|
||||
|
||||
public DateOnly FechaAlta { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
}
|
||||
29
bdGrupoSanchoToro/db/expedientesentidades.cs
Normal file
29
bdGrupoSanchoToro/db/expedientesentidades.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class expedientesentidades
|
||||
{
|
||||
public int idExpediente { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateTime? Fecha { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public bool EsAdvertencia { get; set; }
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
31
bdGrupoSanchoToro/db/extractosbancarios.cs
Normal file
31
bdGrupoSanchoToro/db/extractosbancarios.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class extractosbancarios
|
||||
{
|
||||
public int idExtracto { get; set; }
|
||||
|
||||
public int idCaja { get; set; }
|
||||
|
||||
public DateOnly FechaInicial { get; set; }
|
||||
|
||||
public DateOnly FechaFinal { get; set; }
|
||||
|
||||
public double SaldoAnterior { get; set; }
|
||||
|
||||
public DateTime FechaLectura { get; set; }
|
||||
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public double SaldoFinal { get; set; }
|
||||
|
||||
public virtual cajas idCajaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios idUsuarioNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<movimientosbancarios> movimientosbancarios { get; set; } = new List<movimientosbancarios>();
|
||||
}
|
||||
95
bdGrupoSanchoToro/db/facturas.cs
Normal file
95
bdGrupoSanchoToro/db/facturas.cs
Normal file
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class facturas
|
||||
{
|
||||
public int idFactura { get; set; }
|
||||
|
||||
public string NumeroFactura { get; set; } = null!;
|
||||
|
||||
public DateOnly FechaFactura { get; set; }
|
||||
|
||||
public DateTime FechaEmision { get; set; }
|
||||
|
||||
public int idCliente { get; set; }
|
||||
|
||||
public double BaseImponibleExenta { get; set; }
|
||||
|
||||
public double? BaseImponible1 { get; set; }
|
||||
|
||||
public double? BaseImponible2 { get; set; }
|
||||
|
||||
public double? BaseImponible3 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA1 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA2 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA3 { get; set; }
|
||||
|
||||
public double? CuotaIVA1 { get; set; }
|
||||
|
||||
public double? CuotaIVA2 { get; set; }
|
||||
|
||||
public double? CuotaIVA3 { get; set; }
|
||||
|
||||
public double TotalBaseImponible { get; set; }
|
||||
|
||||
public double PorcentajeIRPF { get; set; }
|
||||
|
||||
public double IRPF { get; set; }
|
||||
|
||||
public double TotalIVA { get; set; }
|
||||
|
||||
public double TotalFactura { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int? idDatosClienteOriginal { get; set; }
|
||||
|
||||
public int idSerieFactura { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public string? ObservacionesAImprimir { get; set; }
|
||||
|
||||
public int? idEvento { get; set; }
|
||||
|
||||
public double ImportePagado { get; set; }
|
||||
|
||||
public DateOnly? FechaPago { get; set; }
|
||||
|
||||
public string? NIF { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public DateTime? FechaEnvioAsesoria { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturas> documentosfacturas { get; set; } = new List<documentosfacturas>();
|
||||
|
||||
public virtual entidades idClienteNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ficheros? idDatosClienteOriginalNavigation { get; set; }
|
||||
|
||||
public virtual eventos? idEventoNavigation { get; set; }
|
||||
|
||||
public virtual seriesfacturas idSerieFacturaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
}
|
||||
91
bdGrupoSanchoToro/db/facturasrecibidas.cs
Normal file
91
bdGrupoSanchoToro/db/facturasrecibidas.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class facturasrecibidas
|
||||
{
|
||||
public int idFactura { get; set; }
|
||||
|
||||
public string NumeroFactura { get; set; } = null!;
|
||||
|
||||
public DateOnly FechaFactura { get; set; }
|
||||
|
||||
public DateOnly FechaRegistro { get; set; }
|
||||
|
||||
public int idProveedor { get; set; }
|
||||
|
||||
public double BaseImponibleExenta { get; set; }
|
||||
|
||||
public double? BaseImponible1 { get; set; }
|
||||
|
||||
public double? BaseImponible2 { get; set; }
|
||||
|
||||
public double? BaseImponible3 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA1 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA2 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA3 { get; set; }
|
||||
|
||||
public double TotalBaseImponible { get; set; }
|
||||
|
||||
public double TotalIVA { get; set; }
|
||||
|
||||
public double PorcentajeIRPF { get; set; }
|
||||
|
||||
public double IRPF { get; set; }
|
||||
|
||||
public double TotalFactura { get; set; }
|
||||
|
||||
public double ImportePagado { get; set; }
|
||||
|
||||
public DateOnly? FechaPago { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int? idDatosProveedorOriginal { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public double? CuotaIVA1 { get; set; }
|
||||
|
||||
public double? CuotaIVA2 { get; set; }
|
||||
|
||||
public double? CuotaIVA3 { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public string? NIF { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public DateTime? FechaEnvioAsesoria { get; set; }
|
||||
|
||||
public int? idCategoria { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturasrecibidas> detallesfacturasrecibidas { get; set; } = new List<detallesfacturasrecibidas>();
|
||||
|
||||
public virtual ICollection<documentosfacturasrecibidas> documentosfacturasrecibidas { get; set; } = new List<documentosfacturasrecibidas>();
|
||||
|
||||
public virtual enumeraciones? idCategoriaNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idDatosProveedorOriginalNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual entidades idProveedorNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
}
|
||||
61
bdGrupoSanchoToro/db/ficheros.cs
Normal file
61
bdGrupoSanchoToro/db/ficheros.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ficheros
|
||||
{
|
||||
public int idFichero { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public int? idTipo { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public byte[]? Fichero { get; set; }
|
||||
|
||||
public string? NombreFichero { get; set; }
|
||||
|
||||
public int? idAplicacion { get; set; }
|
||||
|
||||
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
|
||||
|
||||
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturas> documentosfacturas { get; set; } = new List<documentosfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturasrecibidas> documentosfacturasrecibidas { get; set; } = new List<documentosfacturasrecibidas>();
|
||||
|
||||
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
||||
|
||||
public virtual ICollection<empresas> empresasidLogo1Navigation { get; set; } = new List<empresas>();
|
||||
|
||||
public virtual ICollection<empresas> empresasidLogo2Navigation { get; set; } = new List<empresas>();
|
||||
|
||||
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidasidDatosProveedorOriginalNavigation { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidasidFicheroNavigation { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
|
||||
|
||||
public virtual enumeraciones? idTipoNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
|
||||
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
|
||||
public virtual ICollection<procesos> procesos { get; set; } = new List<procesos>();
|
||||
}
|
||||
19
bdGrupoSanchoToro/db/ficherosadjuntos.cs
Normal file
19
bdGrupoSanchoToro/db/ficherosadjuntos.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ficherosadjuntos
|
||||
{
|
||||
public int idFicheroAdjunto { get; set; }
|
||||
|
||||
public int idFichero { get; set; }
|
||||
|
||||
public int idCorreo { get; set; }
|
||||
|
||||
public virtual correos idCorreoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ficheros idFicheroNavigation { get; set; } = null!;
|
||||
}
|
||||
19
bdGrupoSanchoToro/db/ficherosconfiguracion.cs
Normal file
19
bdGrupoSanchoToro/db/ficherosconfiguracion.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ficherosconfiguracion
|
||||
{
|
||||
public int idFicheroConfiguracion { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public byte[]? Configuracion { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
}
|
||||
15
bdGrupoSanchoToro/db/fiestas.cs
Normal file
15
bdGrupoSanchoToro/db/fiestas.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class fiestas
|
||||
{
|
||||
public int idFiesta { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateOnly Fecha { get; set; }
|
||||
}
|
||||
19
bdGrupoSanchoToro/db/formulas.cs
Normal file
19
bdGrupoSanchoToro/db/formulas.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class formulas
|
||||
{
|
||||
public int idFormula { get; set; }
|
||||
|
||||
public string Codigo { get; set; } = null!;
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public string? Formula { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
}
|
||||
19
bdGrupoSanchoToro/db/gruposenumeraciones.cs
Normal file
19
bdGrupoSanchoToro/db/gruposenumeraciones.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class gruposenumeraciones
|
||||
{
|
||||
public int idGrupoEnumeracion { get; set; }
|
||||
|
||||
public string Grupo { get; set; } = null!;
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public bool Oculto { get; set; }
|
||||
|
||||
public virtual ICollection<enumeraciones> enumeraciones { get; set; } = new List<enumeraciones>();
|
||||
}
|
||||
17
bdGrupoSanchoToro/db/gruposusuarios.cs
Normal file
17
bdGrupoSanchoToro/db/gruposusuarios.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class gruposusuarios
|
||||
{
|
||||
public int idGrupo { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public virtual ICollection<autorizacionesgrupos> autorizacionesgrupos { get; set; } = new List<autorizacionesgrupos>();
|
||||
|
||||
public virtual ICollection<usuarios> usuarios { get; set; } = new List<usuarios>();
|
||||
}
|
||||
37
bdGrupoSanchoToro/db/logs.cs
Normal file
37
bdGrupoSanchoToro/db/logs.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class logs
|
||||
{
|
||||
public int idLog { get; set; }
|
||||
|
||||
public string? Tabla { get; set; }
|
||||
|
||||
public string Aplicacion { get; set; } = null!;
|
||||
|
||||
public int id { get; set; }
|
||||
|
||||
public string? Usuario { get; set; }
|
||||
|
||||
public string? ip { get; set; }
|
||||
|
||||
public DateTime? FechaHora { get; set; }
|
||||
|
||||
public string? Log { get; set; }
|
||||
|
||||
public int? idConexion { get; set; }
|
||||
|
||||
public double? idTimeStamp { get; set; }
|
||||
|
||||
public string? Tipo { get; set; }
|
||||
|
||||
public int? idRelacionado { get; set; }
|
||||
|
||||
public string? VersionPrograma { get; set; }
|
||||
|
||||
public bool? SuperUsuario { get; set; }
|
||||
}
|
||||
27
bdGrupoSanchoToro/db/menus.cs
Normal file
27
bdGrupoSanchoToro/db/menus.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class menus
|
||||
{
|
||||
public int idMenus { get; set; }
|
||||
|
||||
public string? Texto { get; set; }
|
||||
|
||||
public string? Ayuda { get; set; }
|
||||
|
||||
public string? Accion { get; set; }
|
||||
|
||||
public int? Orden { get; set; }
|
||||
|
||||
public int? idMenuPadre { get; set; }
|
||||
|
||||
public bool MostrarEnPanel { get; set; }
|
||||
|
||||
public int? idPermiso { get; set; }
|
||||
|
||||
public virtual permisos? idPermisoNavigation { get; set; }
|
||||
}
|
||||
35
bdGrupoSanchoToro/db/movimientosbancarios.cs
Normal file
35
bdGrupoSanchoToro/db/movimientosbancarios.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class movimientosbancarios
|
||||
{
|
||||
public int idMovimientoBancario { get; set; }
|
||||
|
||||
public int idExtractoBancario { get; set; }
|
||||
|
||||
public DateOnly FechaOperacion { get; set; }
|
||||
|
||||
public DateOnly FechaValor { get; set; }
|
||||
|
||||
public string CodigoConcepto { get; set; } = null!;
|
||||
|
||||
public string ConceptoPropio { get; set; } = null!;
|
||||
|
||||
public double Importe { get; set; }
|
||||
|
||||
public string NumeroDocumento { get; set; } = null!;
|
||||
|
||||
public string ReferenciaBanco { get; set; } = null!;
|
||||
|
||||
public string Detalle { get; set; } = null!;
|
||||
|
||||
public int? idConciliacion { get; set; }
|
||||
|
||||
public virtual conciliacionesbancarias? idConciliacionNavigation { get; set; }
|
||||
|
||||
public virtual extractosbancarios idExtractoBancarioNavigation { get; set; } = null!;
|
||||
}
|
||||
63
bdGrupoSanchoToro/db/movimientoscaja.cs
Normal file
63
bdGrupoSanchoToro/db/movimientoscaja.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class movimientoscaja
|
||||
{
|
||||
public int idMovimiento { get; set; }
|
||||
|
||||
public int idCaja { get; set; }
|
||||
|
||||
public double Importe { get; set; }
|
||||
|
||||
public int? idFactura { get; set; }
|
||||
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public DateTime FechaCreacion { get; set; }
|
||||
|
||||
public int? idMovimientoCierre { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public DateTime? FechaSupervision { get; set; }
|
||||
|
||||
public int? idUsuarioSupervisa { get; set; }
|
||||
|
||||
public string? DocumentoPago { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public string? NumeroRecibo { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public int? idFacturaRecibida { get; set; }
|
||||
|
||||
public double SaldoAntesCierre { get; set; }
|
||||
|
||||
public int? idConciliacion { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> InverseidMovimientoCierreNavigation { get; set; } = new List<movimientoscaja>();
|
||||
|
||||
public virtual cajas idCajaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual conciliacionesbancarias? idConciliacionNavigation { get; set; }
|
||||
|
||||
public virtual facturas? idFacturaNavigation { get; set; }
|
||||
|
||||
public virtual facturasrecibidas? idFacturaRecibidaNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual movimientoscaja? idMovimientoCierreNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioSupervisaNavigation { get; set; }
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/municipios.cs
Normal file
33
bdGrupoSanchoToro/db/municipios.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class municipios
|
||||
{
|
||||
public string CodigoMunicipio { get; set; } = null!;
|
||||
|
||||
public string? CodigoProvincia { get; set; }
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public string? DC { get; set; }
|
||||
|
||||
public virtual provincias? CodigoProvinciaNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<albaranes> albaranesCodigoMunicipioCargaNavigation { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<albaranes> albaranesCodigoMunicipioDescargaNavigation { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<almacenes> almacenes { get; set; } = new List<almacenes>();
|
||||
|
||||
public virtual ICollection<codigospostales> codigospostales { get; set; } = new List<codigospostales>();
|
||||
|
||||
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
|
||||
|
||||
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
}
|
||||
27
bdGrupoSanchoToro/db/permisos.cs
Normal file
27
bdGrupoSanchoToro/db/permisos.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class permisos
|
||||
{
|
||||
public int idPermiso { get; set; }
|
||||
|
||||
public string? CodigoPermiso { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public virtual ICollection<autorizacionesgrupos> autorizacionesgrupos { get; set; } = new List<autorizacionesgrupos>();
|
||||
|
||||
public virtual ICollection<autorizacionesusuarios> autorizacionesusuarios { get; set; } = new List<autorizacionesusuarios>();
|
||||
|
||||
public virtual ICollection<cajas> cajas { get; set; } = new List<cajas>();
|
||||
|
||||
public virtual ICollection<menus> menus { get; set; } = new List<menus>();
|
||||
|
||||
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
||||
|
||||
public virtual ICollection<procesos> procesos { get; set; } = new List<procesos>();
|
||||
}
|
||||
43
bdGrupoSanchoToro/db/plantillas.cs
Normal file
43
bdGrupoSanchoToro/db/plantillas.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class plantillas
|
||||
{
|
||||
public int idPlantilla { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public int? idTipo { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public int idGrupo { get; set; }
|
||||
|
||||
public bool Oculta { get; set; }
|
||||
|
||||
public bool TipoListado { get; set; }
|
||||
|
||||
public int? idPermiso { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public bool? Oculto { get; set; }
|
||||
|
||||
public int? Orden { get; set; }
|
||||
|
||||
public int? idEmpresa { get; set; }
|
||||
|
||||
public virtual empresas? idEmpresaNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual enumeraciones idGrupoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual permisos? idPermisoNavigation { get; set; }
|
||||
}
|
||||
61
bdGrupoSanchoToro/db/presupuestos.cs
Normal file
61
bdGrupoSanchoToro/db/presupuestos.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class presupuestos
|
||||
{
|
||||
public int idPresupuesto { get; set; }
|
||||
|
||||
public DateOnly FechaPresupuesto { get; set; }
|
||||
|
||||
public DateOnly? FechaAceptacion { get; set; }
|
||||
|
||||
public int idCliente { get; set; }
|
||||
|
||||
public int? idEvento { get; set; }
|
||||
|
||||
public double ImporteBruto { get; set; }
|
||||
|
||||
public double PorcentajeIVA { get; set; }
|
||||
|
||||
public double IVA { get; set; }
|
||||
|
||||
public double TotalPresupuesto { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int? idDatosClienteOriginal { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public DateOnly? FechaAceptacionPresupuesto { get; set; }
|
||||
|
||||
public int? idPersonaContacto { get; set; }
|
||||
|
||||
public double Kilometros { get; set; }
|
||||
|
||||
public DateOnly? FechaInicioEvento { get; set; }
|
||||
|
||||
public DateOnly? FechaFinEvento { get; set; }
|
||||
|
||||
public DateOnly? FechaMontaje { get; set; }
|
||||
|
||||
public DateOnly? FechaDesmontaje { get; set; }
|
||||
|
||||
public virtual ICollection<albaranes> albaranes { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
|
||||
|
||||
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
||||
|
||||
public virtual entidades idClienteNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ficheros? idDatosClienteOriginalNavigation { get; set; }
|
||||
|
||||
public virtual eventos? idEventoNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
33
bdGrupoSanchoToro/db/procesos.cs
Normal file
33
bdGrupoSanchoToro/db/procesos.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class procesos
|
||||
{
|
||||
public int idProceso { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public string? Accion { get; set; }
|
||||
|
||||
public int? idTipo { get; set; }
|
||||
|
||||
public int? idSubtipo { get; set; }
|
||||
|
||||
public int? idPermiso { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual permisos? idPermisoNavigation { get; set; }
|
||||
|
||||
public virtual enumeraciones? idSubtipoNavigation { get; set; }
|
||||
|
||||
public virtual enumeraciones? idTipoNavigation { get; set; }
|
||||
}
|
||||
101
bdGrupoSanchoToro/db/productos.cs
Normal file
101
bdGrupoSanchoToro/db/productos.cs
Normal file
@@ -0,0 +1,101 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class productos
|
||||
{
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
|
||||
public double PrecioVenta { get; set; }
|
||||
|
||||
public double PrecioAlquiler { get; set; }
|
||||
|
||||
public int? idUsuarioCreador { get; set; }
|
||||
|
||||
public int? idUsuarioModificador { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public bool? FacturarComoVentaPorDefecto { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public double UltimoPrecioCompra { get; set; }
|
||||
|
||||
public double Peso { get; set; }
|
||||
|
||||
public double Volumen { get; set; }
|
||||
|
||||
public double HorasMontaje { get; set; }
|
||||
|
||||
public double HorasDesmontaje { get; set; }
|
||||
|
||||
public double TotalUnidades { get; set; }
|
||||
|
||||
public double UnidadesInicialesOFabricadas { get; set; }
|
||||
|
||||
public double UnidadesCompradas { get; set; }
|
||||
|
||||
public double UnidadesVendidas { get; set; }
|
||||
|
||||
public double UnidadesAlquiladas { get; set; }
|
||||
|
||||
public double UnidadesAveriadas { get; set; }
|
||||
|
||||
public double UnidadesDesechadas { get; set; }
|
||||
|
||||
public double UnidadesSubAlquiladas { get; set; }
|
||||
|
||||
public double PorcentajeDesgasteDiaAlquilado { get; set; }
|
||||
|
||||
public int NumeroAsientos { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public int NumeroFilas { get; set; }
|
||||
|
||||
public bool PrecioPorDia { get; set; }
|
||||
|
||||
public bool PrecioPorAsiento { get; set; }
|
||||
|
||||
public bool PrecioPorKm { get; set; }
|
||||
|
||||
public double PrecioMinimo { get; set; }
|
||||
|
||||
public double IncrementoGastosGenerales { get; set; }
|
||||
|
||||
public int Ancho { get; set; }
|
||||
|
||||
public int Largo { get; set; }
|
||||
|
||||
public bool IncluyeTarima { get; set; }
|
||||
|
||||
public bool IncluyeIluminacion { get; set; }
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
|
||||
|
||||
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
|
||||
|
||||
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual ICollection<detallesfacturasrecibidas> detallesfacturasrecibidas { get; set; } = new List<detallesfacturasrecibidas>();
|
||||
|
||||
public virtual empresas idEmpresaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<stocks> stocks { get; set; } = new List<stocks>();
|
||||
}
|
||||
15
bdGrupoSanchoToro/db/provincias.cs
Normal file
15
bdGrupoSanchoToro/db/provincias.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class provincias
|
||||
{
|
||||
public string CodigoProvincia { get; set; } = null!;
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public virtual ICollection<municipios> municipios { get; set; } = new List<municipios>();
|
||||
}
|
||||
29
bdGrupoSanchoToro/db/seriesfacturas.cs
Normal file
29
bdGrupoSanchoToro/db/seriesfacturas.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class seriesfacturas
|
||||
{
|
||||
public int idSerieFactura { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public string Serie { get; set; } = null!;
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public int NumeroDigitos { get; set; }
|
||||
|
||||
public bool IRPFDespuesDeIVA { get; set; }
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual empresas idEmpresaNavigation { get; set; } = null!;
|
||||
}
|
||||
21
bdGrupoSanchoToro/db/stocks.cs
Normal file
21
bdGrupoSanchoToro/db/stocks.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class stocks
|
||||
{
|
||||
public int idStock { get; set; }
|
||||
|
||||
public int idAlmacen { get; set; }
|
||||
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public double Unidades { get; set; }
|
||||
|
||||
public virtual almacenes idAlmacenNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
}
|
||||
15
bdGrupoSanchoToro/db/tablas.cs
Normal file
15
bdGrupoSanchoToro/db/tablas.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class tablas
|
||||
{
|
||||
public int idTabla { get; set; }
|
||||
|
||||
public string Codigo { get; set; } = null!;
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
}
|
||||
27
bdGrupoSanchoToro/db/trabajador.cs
Normal file
27
bdGrupoSanchoToro/db/trabajador.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class trabajador
|
||||
{
|
||||
public int idTrabajador { get; set; }
|
||||
|
||||
public string? DocumentoIdentidad { get; set; }
|
||||
|
||||
public string? Apellidos { get; set; }
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public string? CorreoElectronico { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public DateOnly? FechaAlta { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
}
|
||||
67
bdGrupoSanchoToro/db/usuarios.cs
Normal file
67
bdGrupoSanchoToro/db/usuarios.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class usuarios
|
||||
{
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public string Usuario { get; set; } = null!;
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public string? SHA1Passwd { get; set; }
|
||||
|
||||
public int? idGrupo { get; set; }
|
||||
|
||||
public int? idTema { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public double? Escala { get; set; }
|
||||
|
||||
public virtual ICollection<albaranes> albaranes { get; set; } = new List<albaranes>();
|
||||
|
||||
public virtual ICollection<autorizacionesusuarios> autorizacionesusuarios { get; set; } = new List<autorizacionesusuarios>();
|
||||
|
||||
public virtual ICollection<conciliacionesbancarias> conciliacionesbancarias { get; set; } = new List<conciliacionesbancarias>();
|
||||
|
||||
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
||||
|
||||
public virtual ICollection<documentosfacturas> documentosfacturas { get; set; } = new List<documentosfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturasrecibidas> documentosfacturasrecibidas { get; set; } = new List<documentosfacturasrecibidas>();
|
||||
|
||||
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
||||
|
||||
public virtual ICollection<entidades> entidadesidUsuarioCreadorNavigation { get; set; } = new List<entidades>();
|
||||
|
||||
public virtual ICollection<entidades> entidadesidUsuarioModificadorNavigation { get; set; } = new List<entidades>();
|
||||
|
||||
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
|
||||
|
||||
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
|
||||
|
||||
public virtual ICollection<extractosbancarios> extractosbancarios { get; set; } = new List<extractosbancarios>();
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual gruposusuarios? idGrupoNavigation { get; set; }
|
||||
|
||||
public virtual enumeraciones? idTemaNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscajaidUsuarioNavigation { get; set; } = new List<movimientoscaja>();
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscajaidUsuarioSupervisaNavigation { get; set; } = new List<movimientoscaja>();
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
|
||||
public virtual ICollection<productos> productosidUsuarioCreadorNavigation { get; set; } = new List<productos>();
|
||||
|
||||
public virtual ICollection<productos> productosidUsuarioModificadorNavigation { get; set; } = new List<productos>();
|
||||
}
|
||||
99
bdGrupoSanchoToro/db/v_albaranesextendidos.cs
Normal file
99
bdGrupoSanchoToro/db/v_albaranesextendidos.cs
Normal file
@@ -0,0 +1,99 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class v_albaranesextendidos
|
||||
{
|
||||
public int idAlbaran { get; set; }
|
||||
|
||||
public DateOnly Fecha { get; set; }
|
||||
|
||||
public int? idPresupuesto { get; set; }
|
||||
|
||||
public int? idValeTransporte { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public DateTime? FechaCarga { get; set; }
|
||||
|
||||
public string? LugarCarga { get; set; }
|
||||
|
||||
public string? Cargadores { get; set; }
|
||||
|
||||
public DateTime? FechaDescarga { get; set; }
|
||||
|
||||
public string? LugarDescarga { get; set; }
|
||||
|
||||
public string? Descargadores { get; set; }
|
||||
|
||||
public double Peso { get; set; }
|
||||
|
||||
public double Volumen { get; set; }
|
||||
|
||||
public double PorcentajeTransporte { get; set; }
|
||||
|
||||
public double CostoEstimadoTransporte { get; set; }
|
||||
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public int? idAlmacenOrigen { get; set; }
|
||||
|
||||
public string? CodigoPostalCarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioCarga { get; set; }
|
||||
|
||||
public string? CodigoPostalDescarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioDescarga { get; set; }
|
||||
|
||||
public string? Telefono1Carga { get; set; }
|
||||
|
||||
public string? Telefono2Carga { get; set; }
|
||||
|
||||
public string? EmailCarga { get; set; }
|
||||
|
||||
public string? Telefono1Descarga { get; set; }
|
||||
|
||||
public string? Telefono2Descarga { get; set; }
|
||||
|
||||
public string? EmailDescarga { get; set; }
|
||||
|
||||
public int? idAlmacenDestino { get; set; }
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public int? idEvento { get; set; }
|
||||
|
||||
public string? DescripcionEvento { get; set; }
|
||||
|
||||
public string? Telefono1Evento { get; set; }
|
||||
|
||||
public string? Telefono2Evento { get; set; }
|
||||
|
||||
public string? PersonaContactoEvento { get; set; }
|
||||
|
||||
public string? DireccionEvento { get; set; }
|
||||
|
||||
public string? CodigoPostalEvento { get; set; }
|
||||
|
||||
public string? CodigoMunicipioEvento { get; set; }
|
||||
|
||||
public string? ObservacionesEvento { get; set; }
|
||||
|
||||
public string? NIF { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? CodigoUsuario { get; set; }
|
||||
|
||||
public string? Usuario { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user