public Deploy.CustomDTO.AppSetAppGridDTO GetAppList(Deploy.CustomDTO.AppSetSearch2DTO search) { //定义返回值 Deploy.CustomDTO.AppSetAppGridDTO result; try { //调用代理方法 result = base.Channel.GetAppList(search); } catch { //抛异常 throw; } finally { //关链接 ChannelClose(); } //返回结果 return(result); }
/// <summary> /// 获取APP /// </summary> /// <param name="search"></param> /// <returns></returns> public Deploy.CustomDTO.AppSetAppGridDTO GetAppList(Deploy.CustomDTO.AppSetSearch2DTO search) { base.Do(); return(this.Command.GetAppList(search)); }