public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO UpdateSupplier(Jinher.AMP.BTP.Deploy.CustomDTO.SupplierUpdateDTO dto) { //定义返回值 Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO result; try { //调用代理方法 result = base.Channel.UpdateSupplier(dto); } catch { //抛异常 throw; } finally { //关链接 ChannelClose(); } //返回结果 return(result); }
/// <summary> /// 修改供应商 /// </summary> /// <param name="searchDto"></param> /// <returns></returns> public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO UpdateSupplier(Jinher.AMP.BTP.Deploy.CustomDTO.SupplierUpdateDTO dto) { base.Do(); return(this.UpdateSupplierExt(dto)); }
/// <summary> /// 添加供应商 /// </summary> /// <param name="searchDto"></param> /// <returns></returns> public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO AddSupplier(Jinher.AMP.BTP.Deploy.CustomDTO.SupplierUpdateDTO dto) { base.Do(); return(this.Command.AddSupplier(dto)); }