示例#1
0
 internal PSlot(int slotNo)
 {
     SlotNo   = slotNo;
     Pastry   = new NullPastry();
     IsFilled = false;
     Status   = "";
 }
示例#2
0
 internal void Finish()
 {
     if (Pastry is null)
     {
         return;
     }
     FunctionalList.PreparedPastry.Add(Pastry);
     Pastry   = new NullPastry();
     IsFilled = false;
 }