void INetTransfer.UploadBatch(NBatchInfo info)
        {
            this.ReportMsg(ENetTransferStatus.Start, info.BatchNO, "", 0.0, 0.0);
            string fileName = this.GetFileName(info.BatchNO);

            info.ToPBFile(fileName, AppContext.GetInstance().Config.GetConfigParamValue("NetSetting", "TransModel"));
            AppContext.GetInstance().MS.LogDebug("localserver mode save to " + fileName);
            this.ReportMsg(ENetTransferStatus.Success, info.BatchNO, "", 0.0, 0.0);
            NResultInfo nResultInfo = new NResultInfo();

            nResultInfo.Status = EResultStatus.eSuccess;
            this._uploadresult = nResultInfo;
            //return nResultInfo;
        }