Exemple #1
0
        private void EmployeeAddBtn_Click(object sender, EventArgs e)
        {
            Operation.BeginOperation(this);
            FrmAddEmployee addempfrm = new FrmAddEmployee();
            addempfrm.ShowDialog();
            Operation.EndOperation(this);

        }
        private void AddBtn_Click(object sender, EventArgs e)
        {
            Operation.BeginOperation(this);
          

            FrmAddEmployee add = new FrmAddEmployee();
            add.ShowDialog();
            Operation.EndOperation(this);
            this.FrmEmployeeMng_Load(null, null);
        }