Sie sind auf Seite 1von 2

using System; using System.Collections.Generic; using System.Text; namespace Empresa.GestionVentas.

Entidades { public class Producto { private int _Id; public int Id { get { return _Id; } set { _Id = value; } } private int _Nombre; public int Nombre { get { return _Nombre; } set { _Nombre = value; } } private double _Precio; public double Precio { get { return _Precio; } set { _Precio = value; } } private int _Stock; public int Stock { get { return _Stock; } set { _Stock = value; } } private Familia _oFamilia; public Familia oFamilia { get { return _oFamilia; } set { _oFamilia = value; } } } } //// using System; using System.Collections.Generic; using System.Text; namespace Empresa.GestionVentas.Entidades { public class Familia

{ private int _Id; public int Id { get { return _Id; } set { _Id = value; } } private String _Nombre; public String Nombre { get { return _Nombre; } set { _Nombre = value; } } private List<Producto> _lProducto; public List<Producto> lProducto { get { return _lProducto; } set { _lProducto = value; } } } }

Das könnte Ihnen auch gefallen