Esempio n. 1
0
 public frmSalesOrderSearch()
 {
     InitializeComponent();
     // base.toggelButton(base.btn_Close);
     base.lbl_FormHeader.Text = "فواتير البيع";
     base.panl_Header.Dock    = DockStyle.Top;
     sALSalesHeaderWrapper    = new SALSalesHeaderWrapper();
     InitiateGrid();
 }
Esempio n. 2
0
 public frmSalesOrderAddEdit(int salesHeaderID)
 {
     InitializeComponent();
     _bDTaxTypeWrapper      = new BDTaxTypeWrapper();
     _paymentTypeWrapper    = new PaymentTypeWrapper();
     _bDCustomerWrapper     = new BDCustomerWrapper();
     _sALSalesLinerWrapper  = new SALSalesLinerWrapper();
     _sALSalesHeaderWrapper = new SALSalesHeaderWrapper();
     _iNVInventoryWrapper   = new INVInventoryWrapper();
     FillCustomerCBX();
     FillPaymentTypeCBX();
     FillTaxTypeCBX();
     FillInventoryCBX();
     GetSalesOrderData(salesHeaderID);
     FillHeaderData();
     BindGrid();
 }