public async Task ShouldCreateAsync()
        {
            var entityId   = "1-2-3";
            var entityType = "My.Awesome.Blog";
            var value      = "Some long content";

            var created = await _service.CreateAsync(new ContentCreateDto
            {
                EntityId   = entityId,
                EntityType = entityType,
                Value      = value
            });

            created.Id.ShouldNotBe(Guid.Empty);

            var content = await _service.GetAsync(created.Id);

            content.ShouldNotBeNull();
            content.EntityType.ShouldBe(entityType);
        }