public Usuarios() { //id = id1; //obtener tipo conexion BaseDatos = AcessoDatos.getDriver(); InitializeComponent(); }
public AcessoDatos() { id = 0; opcion = 0; Driver = null; InitializeComponent(); }
private void btnNHibernate_Click(object sender, EventArgs e) { //try //{ if (Driver == null) { Driver = new ClassNHibernate(); } opcion = 2; if (frm == null) { frm = new Usuarios(); } frm.Show(); this.Hide(); //this.Close(); //} //catch (Exception ex) //{ // MessageBox.Show("Se ha producido un error: " + ex.Message); //} //finally //{ //} }
private void btnEF_Click(object sender, EventArgs e) { try { if (Driver == null) { Driver = new ClassEntityFramework(); } opcion = 4; if (frm == null) { frm = new Usuarios(); } frm.Show(); this.Hide(); //this.Close(); } catch (Exception ex) { MessageBox.Show("Se ha producido un error: " + ex.Message); } finally { } }
public Buscador() { id = 0; BaseDatos = AcessoDatos.getDriver(); InitializeComponent(); }