public override async Task <CompartilharPostagemCommandResult> Handle(CompartilharPostagemCommand request, CancellationToken cancellationToken)
        {
            Postagem postagem = await ObterPostagemCriticandoSeNaoExitirNoRepositorio(request.Id);

            Compartilhamento compartilhamento = new Compartilhamento(_user.CurrentRequestUserId, postagem.Id);

            postagem.Compartilhar(compartilhamento);

            return(await Task.FromResult(new CompartilharPostagemCommandResult(compartilhamento.Id, postagem.Id, _user.CurrentRequestUserId)));
        }