private ProjectKoraiTelephonyPlugin(MyPhonePlugins.IMyPhoneCallHandler callHandler)
        {
            this.callHandler = callHandler;

            callHandler.OnCallStatusChanged += new MyPhonePlugins.CallInfoHandler(callHandler_OnCallStatusChanged);
            callHandler.OnMyPhoneStatusChanged += new MyPhonePlugins.MyPhoneStatusHandler(callHandler_OnMyPhoneStatusChanged);
        }
 void callHandler_OnMyPhoneStatusChanged(object sender, MyPhonePlugins.MyPhoneStatus status)
 {
     throw new NotImplementedException();
 }
 private void callHandler_OnCallStatusChanged(object sender, MyPhonePlugins.CallStatus callInfo)
 {
     throw new NotImplementedException();
 }
 public static void Loader(MyPhonePlugins.IMyPhoneCallHandler callHandler)
 {
     instance = new ProjectKoraiTelephonyPlugin(callHandler);
     instance.StartServiceAsync();
 }