private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(new FrmTransactionsViewModel()))
     {
         newForm.ShowDialog();
     }
 }
Exemple #2
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(_clientManagmentViewModel.Account.Id))
     {
         newForm.ShowDialog();
     }
 }
Exemple #3
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(_clientId))
     {
         newForm.ShowDialog();
     }
 }
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(clientManagementViewModel.GetAccountID(number)))
     {
         newForm.ShowDialog();
     }
 }
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(int.Parse(dgwClientInfo.Rows[0].Cells[0].Value.ToString())))
     {
         newForm.ShowDialog();
     }
     FillGrid();
 }