Example #1
0
 public frmPurchaseLineAddEdit(frmPurchaseOrderAddEdit _frmPurchaseOrderAddEdit)
 {
     InitializeComponent();
     _bDProductGroupWrapper = new BDProductGroupWrapper();
     _bDProductWrapper = new BDProductWrapper();
     this.frmPurchaseOrderAddEditObj = _frmPurchaseOrderAddEdit;
     FillProductGroupCBX();
 }
Example #2
0
 public frmOpenningQuantities()
 {
     InitializeComponent();
     iNVProductStockCollection = new INVProductStockCollection();
     _iNVInventoryWrapper = new INVInventoryWrapper();
     _bDProductWrapper = new BDProductWrapper();
     _iNVProductStockWrapper = new INVProductStockWrapper();
     FillInventoryCBX();
 }
Example #3
0
 public FrmTransferLineAddEdit(int inventoryID, FrmAddEditTransferOrder _frmAddEditTransferOrder)
 {
     InitializeComponent();
     _bDProductGroupWrapper = new BDProductGroupWrapper();
     _bDProductWrapper = new BDProductWrapper();
     _inventoryID = inventoryID;
     this.frmAddEditTransferOrder = _frmAddEditTransferOrder;
     FillProductGroupCBX();
 }
Example #4
0
 public frmSalesLineAddEdit(int inventoryID, frmSalesOrderAddEdit _frmSalesOrderAddEdit)
 {
     InitializeComponent();
     _inventoryID = inventoryID;
     _bDProductGroupWrapper = new BDProductGroupWrapper();
     _bDProductWrapper = new BDProductWrapper();
     this.frmSalesOrderAddEditObj = _frmSalesOrderAddEdit;
     FillProductGroupCBX();
 }
        public frmPurchaseReturnOrderAddEdit(int salesReturnHeaderID)
        {
            InitializeComponent();
            pURPurchaseReturnHeaderWrapper = new PURPurchaseReturnHeaderWrapper();
            pURPurchaseReturnLineWrraper = new PURPurchaseReturnLineWrraper();
            bDProductWrapper = new BDProductWrapper();
            FillProductCBX();
            FillInventoryCBX();

            FillScreenWithDataForEdit(salesReturnHeaderID);
        }
 public frmPurchaseReturnOrderAddEdit()
 {
     InitializeComponent();
     pURPurchaseReturnHeaderWrapper = new PURPurchaseReturnHeaderWrapper();
     pURPurchaseReturnLineWrraper = new PURPurchaseReturnLineWrraper();
     bDProductWrapper = new BDProductWrapper();
     pURPurchaseReturnHeader = new PURPurchaseReturnHeader();
     pURPurchaseReturnLineCollection = new PURPurchaseReturnLineCollection();
     FillProductCBX();
     dgrd_ReturnOrderLines.Enabled = false;
 }
 public frmSalesReturnOrderAddEdit(int salesReturnHeaderID)
 {
     InitializeComponent();
     sALSalesReturnHeaderWrapper = new SALSalesReturnHeaderWrapper();
     sALSalesReturnLineWrraper = new SALSalesReturnLineWrraper();
     bDProductWrapper = new BDProductWrapper();
     iNVStockTypeWrapper = new INVStockTypeWrapper();
     FillProductCBX();
     FillInventoryCBX();
     FillStockTypeCBX();
     FillScreenWithDataForEdit(salesReturnHeaderID);
 }
Example #8
0
 public FrmAdjustStockAddEdit(FrmAdjustmentSearch frmAdjustmentSearch)
 {
     InitializeComponent();
     this._invProductStockWrapper = new INVProductStockWrapper();
     this._inventoryWrapper = new INVInventoryWrapper();
     this._stockTypeWrapper = new INVStockTypeWrapper();
     this._adjustStockReasonWrapper = new INVAdjustStockReasonWrapper();
     this._adjustStockWrapper = new INVAdjustStockWrapper();
     this._adjustStock = new INVAdjustStock();
     this._ProductWrapper = new BDProductWrapper();
     this._adjustStockCollection = new INVAdjustStockCollection();
     this._isEdit = false;
     this._frmAdjustmentSearch = frmAdjustmentSearch;
 }
 public frmSalesReturnOrderAddEdit()
 {
     InitializeComponent();
     sALSalesReturnHeaderWrapper = new SALSalesReturnHeaderWrapper();
     sALSalesReturnLineWrraper = new SALSalesReturnLineWrraper();
     bDProductWrapper = new BDProductWrapper();
     iNVStockTypeWrapper = new INVStockTypeWrapper();
     sALSalesReturnHeader = new SALSalesReturnHeader();
     sALSalesReturnLineCollection = new SALSalesReturnLineCollection();
     FillInventoryCBX();
     FillProductCBX();
     FillStockTypeCBX();
     dgrd_ReturnOrderLines.Enabled = false;
 }
Example #10
0
 public FrmAdjustStockAddEdit(int id, FrmAdjustmentSearch frmAdjustmentSearch)
 {
     InitializeComponent();
     this._invProductStockWrapper = new INVProductStockWrapper();
     this._inventoryWrapper = new INVInventoryWrapper();
     this._stockTypeWrapper = new INVStockTypeWrapper();
     this._adjustStockReasonWrapper = new INVAdjustStockReasonWrapper();
     this._adjustStockWrapper = new INVAdjustStockWrapper();
     this._adjustStock = new INVAdjustStock();
     this._ProductWrapper = new BDProductWrapper();
     this._isEdit = true;
     this._adjustStockID = id;
     GetAdjustStockData(_adjustStockID.Value);
     this._frmAdjustmentSearch = frmAdjustmentSearch;
 }
Example #11
0
 private void LoadScreenData()
 {
     _bDTaxTypeWrapper = new BDTaxTypeWrapper();
     _paymentTypeWrapper = new PaymentTypeWrapper();
     _bDSupplierWrapper = new BDSupplierWrapper();
     pURPurchaseLineCollection = new PURPurchaseLineCollection();
     _pURPurchaseLinerWrapper = new PURPurchaseLineWrapper();
     _productWrapper = new BDProductWrapper();
     _invInventoryService = new INVInventoryService();
     FillSupplierCBX();
     FillPaymentTypeCBX();
     FillTaxTypeCBX();
     FillInventoryCBX();
 }