コード例 #1
0
ファイル: StockRequest.cs プロジェクト: kimykunjun/test
 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;
 }
コード例 #2
0
ファイル: Branch.cs プロジェクト: kimykunjun/test
 //        protected IList _iBTsTo = new ArrayList();
 public void AddIBTSTo(IBT ibt)
 {
     ibt.BranchTo = this;
     _iBTsFrom.Add(ibt);
 }
コード例 #3
0
ファイル: Branch.cs プロジェクト: kimykunjun/test
 //        protected IList _iBTsFrom = new ArrayList();
 public void AddIBTSFrom(IBT ibt)
 {
     ibt.BranchFrom = this;
     _iBTsFrom.Add(ibt);
 }
コード例 #4
0
 public IBTEntry(int nQuantity, IBT iBT, Product productstrItemCode)
 {
     this._nQuantity          = nQuantity;
     this._iBT                = iBT;
     this._productstrItemCode = productstrItemCode;
 }
コード例 #5
0
ファイル: IBTEntry.cs プロジェクト: kimykunjun/test
 public IBTEntry( int nQuantity, IBT iBT, Product productstrItemCode )
 {
     this._nQuantity = nQuantity;
     this._iBT = iBT;
     this._productstrItemCode = productstrItemCode;
 }
コード例 #6
0
ファイル: Branch.cs プロジェクト: kimykunjun/test
//		protected IList _iBTsTo = new ArrayList();
        public void AddIBTSTo(IBT ibt)
        {
            ibt.BranchTo = this;
            _iBTsFrom.Add(ibt);
        }
コード例 #7
0
ファイル: Branch.cs プロジェクト: kimykunjun/test
//		protected IList _iBTsFrom = new ArrayList();
        public void AddIBTSFrom(IBT ibt)
        {
            ibt.BranchFrom = this;
            _iBTsFrom.Add(ibt);
        }