public override async void ExecuteCore(Quartz.IJobExecutionContext context)
 {
     try
     {
         await LocationHandler.ExportAubuchonLocations(TenantId, FilePath);
     }
     catch (Exception ex)
     {
         _logger.Error(ex.Message, ex);
     }
 }