public async Task <Estabelecimento> DeletarEstabalecimento(Guid id)
        {
            Estabelecimento retornoEstabelecimento = await _estabelecimentoRepository.BuscarPorIdAsync(id);

            if (retornoEstabelecimento == null)
            {
                _notificador.Add("Estabelecimento", "Estabelecimento não encontrado com esse Id");
                return(null);
            }

            await _estabelecimentoRepository.DeletarAsync(retornoEstabelecimento);

            return(retornoEstabelecimento);
        }