Esempio n. 1
0
 /// <summary>
 /// 查询商品 电商馆
 /// </summary>
 /// <param name="search"></param>
 /// <returns></returns>
 public Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.ComdtyList4SelCDTO> > SearchCommodity(Deploy.CustomDTO.ComdtySearch4SelCDTO search)
 {
     base.Do(false);
     return(this.SearchCommodityExt(search));
 }
Esempio n. 2
0
 /// <summary>
 /// 查询商品
 /// </summary>
 /// <param name="search"></param>
 /// <returns></returns>
 public Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.ComdtyList4SelCDTO> > SearchCommodity2(Deploy.CustomDTO.ComdtySearch4SelCDTO search)
 {
     base.Do();
     return(this.Command.SearchCommodity2(search));
 }
Esempio n. 3
0
        public Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.ComdtyList4SelCDTO> > SearchCommodityI(Deploy.CustomDTO.ComdtySearch4SelCDTO search)
        {
            //定义返回值
            Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.ComdtyList4SelCDTO> > result;

            try
            {
                //调用代理方法
                result = base.Channel.SearchCommodityII(search);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }