protected async System.Threading.Tasks.Task Form0Submit(C4G.Models.C4G.Pessoa args)
        {
            try
            {
                var c4GCreatePessoaResult = await C4G.CreatePessoa(pessoa);

                DialogService.Close(pessoa);
            }
            catch (Exception c4GCreatePessoaException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to create new Pessoa!");
            }
        }