private int GetIndice(Cocina c) { int indice = 0; foreach (Cocina x in this._lista) { if (x == c) { return(indice); } indice++; } return(-1); }
public bool Remover(Cocina c) { return(this - c); }
public bool Agregar(Cocina c) { return(this + c); }