Example #1
0
 public PhoneCall(SoftPhone softPhone, bool isIncoming, ICommand<IInternalPhoneCall> startCommand, ICommand stopCommand)
 {
     _softPhone = softPhone;
     _isIncoming = isIncoming;
     _startCommand = startCommand;
     _stopCommand = stopCommand;
 }
Example #2
0
 public PhoneCall(SoftPhone softPhone, bool isIncoming, SipUri from, ICommand acceptCommand, ICommand rejectCommand, ICommand stopCommand)
 {
     _softPhone = softPhone;
     _isIncoming = isIncoming;
     _acceptCommand = acceptCommand;
     _rejectCommand = rejectCommand;
     _stopCommand = stopCommand;
 }