示例#1
0
        protected static string ConvertParameter(ListUtility.Parameters parameters)
        {
            HttpParameterListProcessor httpParameterListProcessor = new HttpParameterListProcessor();
            string sParameters = parameters.Convert(httpParameterListProcessor);

            return(sParameters);
        }
 public void AddWhere(ListUtility.Parameters parameters)
 {
     Com.Trakindo.Utility.ListUtility.IListProcessor listProcessor = new Com.Trakindo.Utility.Database.QueryConditionAndConverter();
     string where = parameters.Convert(listProcessor);
     this.Where   = where;
 }