Exemplo n.º 1
0
 private void SaveManagerFormButton_Click(object sender, EventArgs e)
 {
     string query = "insert into ManagerTable (ManagerName, ManagerPosition) values (\'" + inputFullNameManager.Text + "\', \'" + inputPositionManager.Text + "\')";
     Database.executeQuery(query);
     ManagerFormTable managerTableForm = new ManagerFormTable();
     managerTableForm.Show();
     this.Close();
 }
Exemplo n.º 2
0
        private void SaveManagerFormButton_Click(object sender, EventArgs e)
        {
            string query = "insert into ManagerTable (ManagerName, ManagerPosition) values (\'" + inputFullNameManager.Text + "\', \'" + inputPositionManager.Text + "\')";

            Database.executeQuery(query);
            ManagerFormTable managerTableForm = new ManagerFormTable();

            managerTableForm.Show();
            this.Close();
        }
Exemplo n.º 3
0
 private void LookAtManagersbutton_Click(object sender, EventArgs e)
 {
     ManagerFormTable managerFormTable = new ManagerFormTable();
     managerFormTable.ShowDialog();
 }
Exemplo n.º 4
0
        private void LookAtManagersbutton_Click(object sender, EventArgs e)
        {
            ManagerFormTable managerFormTable = new ManagerFormTable();

            managerFormTable.ShowDialog();
        }