Example #1
0
        public override ComplexValue ReadPhrasesInParagraphsList(tpList resulttype, List <string> list_ids = null)
        {
            ComplexValue rval = new ComplexValue();

            if (resulttype == tpList.tplDBtable)
            {
                rval.dtable = dbConnector.ReadPhrasesInParagraphs(list_ids);
            }
            else
            {
                rval.list.AddRange(dbConnector.ReadPhrasesInParagraphsList(list_ids));
            }
            return(rval);
        }