internal void playPropertyToNewSet(int cardIDOfPropertyToPlay, bool isOrientedUp)
 {
     getServiceReady();
     try
     {
         if (monopolyDealService.playPropertyCardNewSetMD(cardIDOfPropertyToPlay, isOrientedUp, thisClientGuid.boxGuid(), gameOnServiceGuid.boxGuid(), CurrentPlayFieldModel.thisPlayFieldModelInstanceGuid.boxGuid()))
         {
             addToLog("Property played to new set");
         }
         else
         {
             addToLog("Error, card not played");
         }
     }
     catch (Exception ex)
     {
         addToLog(ex.ToString());
         monopolyDealService.Close();
     }
 }