Ejemplo n.º 1
0
 public AudioRecorderService()
     : base()
 {
     //Toast.MakeText(this.ApplicationContext, "ctor", ToastLength.Long).Show();
     this.worker = new AudioRecorderBackroundWorker(Client);
     this.Start();
 }
Ejemplo n.º 2
0
 public AudioRecorderService(INetworkClient client)
     : base()
 {
     this.worker = new AudioRecorderBackroundWorker(client);
 }