private int GetIndice(Cocina c)
        {
            int indice   = -1;
            int contador = 0;

            foreach (Cocina b in this._lista)
            {
                contador++;
                if (b == c)
                {
                    indice = contador - 1;
                }
            }
            return(indice);
        }
 public bool Remover(Cocina c)
 {
     return(this - c);
 }
 public bool Agregar(Cocina c)
 {
     return(this + c);
 }