public async Task Update()
        {
            var resultApi = await _apiService.AtualizaAppUsuario(_idApp, this.IdUser, this.Username, this.MaxLancamentoDia.ToString(), this.IntegrationId);

            if (resultApi.ValidadoOk)
            {
                var itemDb = _appUserRepository.Find(b => b.Iu == this.IdUser).FirstOrDefault();
                if (!ReferenceEquals(itemDb, null))
                {
                    itemDb.Au = this.Username;
                    itemDb.Ii = this.IntegrationId;
                    itemDb.Xl = this.MaxLancamentoDia.ToString();
                    _appUserRepository.Update(itemDb);
                }
                await _messageService.DisplayAlert("Operação concluída com sucesso.");

                await _navigationService.PopAsync();
            }
            else
            {
                await _messageService.DisplayAlert("Ocorreu um erro, tente novamente mais tarde.");
            }
        }