コード例 #1
0
 public frmCustomerAccountEdit(int customerID, FrmCustomerSearch _frmCustomerSearch)
 {
     InitializeComponent();
     this._customerID          = customerID;
     this._bDCustomerWrapper   = new BDCustomerWrapper();
     this._customer            = new BDCustomer();
     this.frmCustomerSearchObj = _frmCustomerSearch;
     FillCustomerData();
 }
コード例 #2
0
 public frmCustomerAccountEdit(int customerID, FrmCustomerSearch _frmCustomerSearch)
 {
     InitializeComponent();
     this._customerID = customerID;
     this._bDCustomerWrapper = new BDCustomerWrapper();
     this._customer = new BDCustomer();
     this.frmCustomerSearchObj = _frmCustomerSearch;
     FillCustomerData();
 }
コード例 #3
0
ファイル: frmMain.cs プロジェクト: kimboox44/POS
 private void mnuItem_Customers_Click(object sender, EventArgs e)
 {
     FrmCustomerSearch frm = new FrmCustomerSearch();
     switchForm(frm);
 }
コード例 #4
0
ファイル: frmMain.cs プロジェクト: kimboox44/POS
 private void btn_AddCustomer_Click(object sender, EventArgs e)
 {
     FrmCustomerSearch frm = new FrmCustomerSearch();
     switchForm(frm);
 }