Esempio n. 1
0
 private void ExecuteSendCombatOrdersCommand(CombatOrders orders)
 {
     if (orders != null && _serviceClient != null)
     {
         ExecuteRemoteCommand(() => _serviceClient.SendCombatOrders(orders));
     }
 }
Esempio n. 2
0
 public void SendCombatOrders(CombatOrders orders)
 {
     if (orders != null && Channel != null)
     {
         try { Channel.SendCombatOrders(orders); }
         catch (FaultException) { }
     }
 }