public async Task <IActionResult> Post([FromBody] DesignAutomationRecord dar)
        {
            //Persist the activity in Azure Table Storage
            Console.WriteLine("Saving record to Azure " + dar);

            //set the queueing time
            dar.TimeQueued = DateTime.UtcNow;

            //set a unique id
            dar.RowKey = Guid.NewGuid().ToString();

            //log the operation
            AzureStorageManager azStorageMgr = new AzureStorageManager(Globals.GetAppSetting("STORAGECONNECTIONSTRING"), "BdpFamilySanitizer");

            _ = await azStorageMgr.SaveAutomationRecord(_logTable, dar);

            return(Ok());
        }