Exemplo n.º 1
0
        /// <summary>
        /// 获取 未完成的拼团列表
        /// </summary>
        /// <param name="inputDTO"></param>
        /// <returns></returns>
        public Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.UnfinishedDiyGroupOutputDTO> > UnfinishedDiyGrouplist(Deploy.CustomDTO.UnfinishedDiyGroupInputDTO inputDTO)
        {
            var result = new ResultDTO <List <UnfinishedDiyGroupOutputDTO> >()
            {
                Data = new List <UnfinishedDiyGroupOutputDTO>()
            };

            try
            {
                result = base.Channel.UnfinishedDiyGrouplist(inputDTO);
            }
            catch
            {
                throw;
            }
            finally
            {
                ChannelClose();
            }

            return(result);
        }
Exemplo n.º 2
0
 /// <summary>
 /// 获取 未完成的拼团列表
 /// </summary>
 /// <param name="inputDTO"></param>
 /// <returns></returns>
 public Deploy.CustomDTO.ResultDTO <List <Deploy.CustomDTO.UnfinishedDiyGroupOutputDTO> > UnfinishedDiyGrouplist(Deploy.CustomDTO.UnfinishedDiyGroupInputDTO inputDTO)
 {
     base.Do(false);
     return(this.UnfinishedDiyGrouplistExt(inputDTO));
 }