public async Task ShouldDeleteAsync()
        {
            await _service.DeleteAsync(_data.Content_2_Id);

            await Should.ThrowAsync <EntityNotFoundException>(async() => await _service.GetAsync(_data.Content_2_Id));
        }