public Producto(int id, string nombre, int cantidad, double precio, string estado, CategoriaProd cat, DateTime fechaUltModif, DateTime fechaLanzamiento, int stock_minimo, PersonaJuridica pj) { this.id = id; this.nombre = nombre; this.cantidad = cantidad; this.precio = precio; this.estado = estado; this.Categoria = cat; this.fecha_Ult_modificacion = fechaUltModif; this.fecha_Lanzamiento = fechaLanzamiento; this.stock_minimo = stock_minimo; this.proveedor = pj; this.categoria = new CategoriaProd(); }
public Producto(int id, string nombre, int cantidad, double precio, string estado, CategoriaProd cat, PersonaJuridica prov) { this.id = id; this.nombre = nombre; this.cantidad = cantidad; this.precio = precio; this.estado = estado; this.Categoria = cat; this.Proveedor = prov; }
public Producto() { this.categoria = new CategoriaProd(); this.proveedor = new PersonaJuridica(); }