Ejemplo n.º 1
0
        private void CadastrarPerfil()
        {
            WPerfilCadastro perfilCadastro = new WPerfilCadastro();
            perfilCadastro.Owner = this;
            perfilCadastro.ShowDialog();

            if (!perfilCadastro.Cancelou)
                ListarPerfils();
        }
Ejemplo n.º 2
0
        private void EditarPerfil(Contrato.Perfil perfil)
        {
            WPerfilCadastro perfilCadastro = new WPerfilCadastro();
            perfilCadastro.Perfil = perfil;
            perfilCadastro.ShowDialog();

            if (!perfilCadastro.Cancelou)
                ListarPerfils();
        }