Example #1
0
 private void CarregarComboPaciente()
 {
     ComboNomePaciente.DataSource    = ConnectionSQLite.GetPacienteAll();
     ComboNomePaciente.ValueMember   = "IdPaciente";
     ComboNomePaciente.DisplayMember = "NomePac";
 }
Example #2
0
 private void CarregarPaciente()
 {
     dataGridView1.DataSource = ConnectionSQLite.GetPacienteAll();
 }