Ejemplo n.º 1
0
        private void btnQryBatchHis_Click(object sender, EventArgs e)
        {
            bool flag = string.IsNullOrEmpty(this.textBox_BatchNO.Text);

            if (!flag)
            {
                NBatchHisQry nBatchHisQry = new NBatchHisQry();
                nBatchHisQry.BatchNO     = this.textBox_BatchNO.Text;
                this._transfer           = INetTransferFactory.GetNetTransfer();
                this._transfer.OnNotify -= new EventHandler <TEventArg <NetTransferNotifyMsg> >(this._transfer_OnNotify);
                this._transfer.OnNotify -= new EventHandler <TEventArg <NetTransferNotifyMsg> >(this._transfer_OnNotify);
                this._transfer.GetBatchHis(nBatchHisQry);
            }
        }
Ejemplo n.º 2
0
        public NBatchHisRsp GetBatchHis(NBatchHisQry qry)
        {
            bool         flag = this._realimp != null;
            NBatchHisRsp result;

            if (flag)
            {
                result = this._realimp.GetBatchHis(qry);
            }
            else
            {
                result = null;
            }
            return(result);
        }
 public NBatchHisRsp GetBatchHis(NBatchHisQry qry)
 {
     return(this._batchhisrspresult);
 }
 public NBatchHisRsp GetBatchHis(NBatchHisQry qry)
 {
     throw new NotImplementedException();
 }