Ejemplo n.º 1
0
 public FullSettingsForm()
 {
     connectionManeger = ConnectionManeger.Instance;
     MySqlDatabaseTreeViewFormatter.Connector = connectionManeger;
     InitializeComponent();
     this.FormClosing += new FormClosingEventHandler(Form1_FormClosing);
     DoubleBuffered = true;
 }
Ejemplo n.º 2
0
 public PersonaService(string connectionString)
 {
     conexion    = new ConnectionManeger(connectionString);
     repositorio = new PersonaRepository(conexion);
 }