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

            FrmAddTheTheDonors frm = new FrmAddTheTheDonors();
            frm.ShowDialog();
            Operation.EndOperation(this);
            FrmManagementFinanciers_Load(null, null);
        }
Esempio n. 2
0
        private void FinanAddBtn_Click(object sender, EventArgs e)
        {
            Operation.BeginOperation(this);
            FrmAddTheTheDonors finadd = new FrmAddTheTheDonors();
            finadd.ShowDialog();
            Operation.EndOperation(this);

        }