38 lines
945 B
C#
38 lines
945 B
C#
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; }
|
|
}
|