Example #1
0
 public void AgarrarArticulo(Articulo articulo)
 {
     articulo.UtilizarArticuloEn(this);
 }
 internal override void AgregarArticulo(Articulo articulo)
 {
     this.articulo = articulo;
 }
Example #3
0
 private void AgregarArticuloEnCasillero(Articulo articulo, int fila, int columna)
 {
     try
     {
         Casillero casillero = ObtenerCasillero(fila, columna);
         casillero.Entidad.AgregarArticulo(articulo);
     }
     catch (CasilleroFueraDeRangoException e)
     {
         throw e;
     }
 }
Example #4
0
 internal virtual void AgregarArticulo(Articulo articulo)
 {
 }