Beispiel #1
0
 public CadastroPessoa()
 {
     InitializeComponent();
     cmbCategoria.ItemsSource       = bll.LoadFuncoes();
     cmbCategoria.DisplayMemberPath = "Descricao";
     cmbCategoria.SelectedValuePath = "Id";
 }
 public EditarPessoas(PessoasDTO DTO)
 {
     InitializeComponent();
     MaxHeight         = SystemParameters.MaximizedPrimaryScreenHeight;
     MaxWidth          = SystemParameters.MaximizedPrimaryScreenWidth;
     txtNome.Text      = DTO.Nome;
     txtEmail.Text     = DTO.Email;
     txtRazao.Text     = DTO.Rsocial;
     txtAnotacoes.Text = DTO.Anotacoes;
     id                          = DTO.Id;
     cliente_Id                  = DTO.Cliente_Id;
     txtTelefone.Text            = DTO.Telefone;
     txtCelular.Text             = DTO.Celular;
     cmbFuncao.ItemsSource       = bll.LoadFuncoes();
     cmbFuncao.DisplayMemberPath = "Descricao";
     cmbFuncao.SelectedValuePath = "Id";
     cmbFuncao.SelectedValue     = Convert.ToInt32(DTO.Funcao_Id);
     cbxStatus.IsChecked         = Convert.ToBoolean(DTO.Status_Id);
 }