public async Task <Dictionary <string, string> > GetCurrentContentAsync(string documentId)
        {
            var content = await _contentRepository.GetAllAsync(documentId);

            return(content.ToDictionary(p => p.Id, p => p.Value));
        }