public Lata ExtraerLata(string lata, double dinero)
        {
            Lata L1 = BuscarLata(lata);

            this._latas.Remove(L1);
            this._dinero += dinero;
            return(L1);
        }
 public void AgregarLata(Lata la)
 {
     if (this._latas.Count >= this._capacidad)
     {
         throw new CapacidadInsuficienteExcepcion();
     }
     else
     {
         this._latas.Add(la);
     }
 }