public void RemoveCooker(Cook c)
 {
     this.Cookers.Remove(c);
 }
 public void AddCooker(Cook c)
 {
     this.Cookers.Add(c);
 }