void ILeafPileTypeSelectOberver.onPileTypeSelectChanged(SuperMemory.Entities.CPileType curPileType)
 {
     biz().CurPileType = curPileType;
     if (biz().hasPiles())
     {
         this.enablePlayControllers();
     }
     else
     {
         this.unEnablePlayControllers();
     }
 }
 void ILeafPileTypeSelectOberver.onPileTypeSelectChanged(SuperMemory.Entities.CPileType curPileType)
 {
     Biz.CurPileType = curPileType;
     if (Biz.hasPiles())
     {
         this.updateOrderAreaData();
         this.enableBtns();
     }
     else
     {
         this.unenableBtns();
     }
 }