public async Task RunImport()
        {
            var config = new ConfigurationBuilder()
                         .AddJsonFile("appsettings.json")
                         .Build();

            StatusRelay relay = new StatusRelay(config);
            await relay.Initialize();

            ImportCsvJob job = new ImportCsvJob();

            JobModel model = new JobModel();

            model.Id   = "IMPORTTEST";
            model.Path = "People.csv";

            ResponseModel response = await job.Run(model, relay, null, config);
        }