private async void RemoverExecute()
        {
            if (Detalhe == null)
            {
                return;
            }

            if (await _contaRepositorio.Remover(Detalhe))
            {
                _navigationService.GoBack();
            }
        }