public SudoForm4(DbManager db)
 {
     Current = this;
     this.db = db;
     //this.current_employee = current_employee;
     InitializeComponent();
 }
Exemplo n.º 2
0
        private void buttonGestionCommande_Click(object sender, EventArgs e)
        {
            this.Hide();
            SudoForm4 form4 = new SudoForm4(db);

            form4.ShowDialog();
            this.Show();
        }
        //public Employee current_employee;

        public SudoForm4()
        {
            Current = this;
            InitializeComponent();
        }