12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CB.TrendTool
- {
- public class ToolManager : ATrendTool, ITrendTool
- {
- public override string CreateHTML(int pageID, bool isPreview ,int pageGroup = 0)
- {
- try
- {
- return TrendToolHtml.GetToolsHtml(pageID);
- }
- catch (System.Exception ex)
- { throw ex; }
- }
- public override List<string> RunFilter(int pageID, List<string> numbers, int areaNum = 0)
- {
- try
- {
- return TrendToolFilter.RunPageFilter(pageID, numbers);
- }
- catch (System.Exception ex)
- { throw ex; }
- }
- }
- }
|