private int GetIndice(Cocina c) { for (int i = 0; i < this._lista.Count; i++) { if (this._lista[i] == c) { return(i); } } return(-1); }
public bool Remover(Cocina c) { return(this - c); }
public bool Agregar(Cocina c) { return(this + c); }