/// <summary>
 /// Dispose - Disposing of this service.
 ///           Saving queue to a file and stoping the executor.
 /// </summary>
 public void Dispose()
 {
     Debug.Write("printerService end");
     executor.Stop();
     SaveQueue();
 }