public async Task UpsertExecutionAsync(Core.Models.Execution execution)
        {
            if (execution == null)
            {
                throw new ArgumentNullException(nameof(execution));
            }

            await DocumentClient.UpsertDocumentAsync(
                DocumentCollectionUri,
                execution.ToCosmosModel());
        }