示例#1
0
 public void RotateItemsLeft(string[] instanceIDs)
 {
     try
     {
         if (!isSimulation)
         {
             factoryService.rotateMachinesLeft(sessionID, instanceIDs);
         }
     }
     catch (EndpointNotFoundException)
     {
         ClientServerEvent(this, new ClientServerEventArgs());
     }
     catch (FaultException)
     {
         ClientServerEvent(this, new ClientServerEventArgs("Fehler auf Server"));
     }
 }