コード例 #1
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(new FrmTransactionsViewModel()))
     {
         newForm.ShowDialog();
     }
 }
コード例 #2
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(_clientManagmentViewModel.Account.Id))
     {
         newForm.ShowDialog();
     }
 }
コード例 #3
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(_clientId))
     {
         newForm.ShowDialog();
     }
 }
コード例 #4
0
 private void cmdAllTransactions_Click(object sender, EventArgs e)
 {
     using (frmTransactions newForm = new frmTransactions(clientManagementViewModel.GetAccountID(number)))
     {
         newForm.ShowDialog();
     }
 }
コード例 #5
0
 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();
 }