agregado procesos y bd clases
This commit is contained in:
37
bdAsegasa/db/productos.cs
Normal file
37
bdAsegasa/db/productos.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.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 PrecioCosto { 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 int Tipo { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user