private void ProcessOrchestrator()
        {
            Log("  - Starting process -");

            var orchestrator = new ImportOrchestrator();

            orchestrator.SetLogger(ServiceLogger.Instance);

            while (true)
            {
                try
                {
                    //Log("  Performing...");

                    orchestrator.Process();
                }
                catch (Exception ex)
                {
                    Log("Service unexpected error: " + ex);
                }

                Thread.Sleep(2000);
                if (!_continue)
                {
                    orchestrator.RequestStop();
                    break;
                }
            }

            //Thread.Sleep(20000);
            Log("  - Process completed -");
        }