Esempio n. 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();
 }
Esempio n. 2
0
 public void SetPortSIPEventsCallback(Interface.IPortSIPEvents sipEvents)
 {
     events = sipEvents;
 }
Esempio n. 3
0
 public PortSIPLib(Context applicationContext)
 {
     appContext = applicationContext;
     events     = null;
 }
Esempio n. 4
0
 public PortSIPLib(Context applicationContext, Interface.IPortSIPEvents sipEvents)
 {
     appContext = applicationContext;
     events     = sipEvents;
 }