Exemple #1
0
 public MainHomePageModel(Interface.IPortSIPEvents _portSIPEvents, IService service)
 {
     _service         = service;
     portSIPEvents    = _portSIPEvents;
     LogoutCommand    = new Command(LogoutCommandExcute);
     OpenPopUpCommand = new Command(OpenPopUpCommandExcute);
     CallCommand      = new Command(CallCommandExcute);
     NumPadCommand    = new Command(NumPadCommandExcute);
     _service.Start();
 }
Exemple #2
0
 public void SetPortSIPEventsCallback(Interface.IPortSIPEvents sipEvents)
 {
     events = sipEvents;
 }
Exemple #3
0
 public PortSIPLib(Context applicationContext)
 {
     appContext = applicationContext;
     events     = null;
 }
Exemple #4
0
 public PortSIPLib(Context applicationContext, Interface.IPortSIPEvents sipEvents)
 {
     appContext = applicationContext;
     events     = sipEvents;
 }