Exemplo n.º 1
0
        public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO CancelTheOrder(Jinher.AMP.BTP.Deploy.CustomDTO.UpdateCommodityOrderParamDTO ucopDto)
        {
            //定义返回值
            Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO result;

            try
            {
                //调用代理方法
                result = base.Channel.CancelTheOrder(ucopDto);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
Exemplo n.º 2
0
 /// <summary>
 ///   修改订单
 ///  </summary>
 /// <param name="ucopDto">参数实体</param>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO CancelTheOrder(Jinher.AMP.BTP.Deploy.CustomDTO.UpdateCommodityOrderParamDTO ucopDto)
 {
     base.Do();
     return(this.Command.CancelTheOrder(ucopDto));
 }