public StockRequest(DateTime dtDate, int nStatusID, string strRemarks, DateTime dtLastEditDate, Branch branchFrom, Branch branchTo, Employee employee, IBT iBT) { this._dtDate = dtDate; this._nStatusID = nStatusID; this._dtLastEditDate = dtLastEditDate; this._branchFrom = branchFrom; this._branchTo = branchTo; this._employee = employee; this._iBT = iBT; this._strRemarks = strRemarks; }
// protected IList _iBTsTo = new ArrayList(); public void AddIBTSTo(IBT ibt) { ibt.BranchTo = this; _iBTsFrom.Add(ibt); }
// protected IList _iBTsFrom = new ArrayList(); public void AddIBTSFrom(IBT ibt) { ibt.BranchFrom = this; _iBTsFrom.Add(ibt); }
public IBTEntry(int nQuantity, IBT iBT, Product productstrItemCode) { this._nQuantity = nQuantity; this._iBT = iBT; this._productstrItemCode = productstrItemCode; }
public IBTEntry( int nQuantity, IBT iBT, Product productstrItemCode ) { this._nQuantity = nQuantity; this._iBT = iBT; this._productstrItemCode = productstrItemCode; }