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