Exemplo n.º 1
0
 public void Call(string number)
 {
     if (IsModelSelected())
     {
         ActionResult action = _currentHeadSet.Call(number);
     }
 }
Exemplo n.º 2
0
 public void Call(string number)
 {
     if (IsModelSelected())
     {
         ActionResult action = _currentHeadSet.Call(number);
         NotifyCallStatus(new CallStatus
         {
             Status      = action.Success,
             PhoneNumber = number
         });
     }
 }