public SmallItem(string name, bool isClean, int washingTime, SmallItemType itemType)
 {
     Name        = name;
     IsClean     = isClean;
     WashingTime = washingTime;
     ItemType    = itemType;
 }
 /*private Product RetreiveProductFromStorage(string productName)
  * {
  *  return kitchen.ProductStorage.RetreiveProduct(productName);
  * }*/
 private void GetTool(SmallItemType tool)
 {
     throw new System.Exception("Not implemented");
 }