using TrendChartSDK.Entity;
namespace TrendChartSDK.TrendChartManager
{
///
/// 基类
///
public abstract class BaseManager
{
#region 彩种分类编码
///
/// 彩种分类编码
///
protected const string LotteryTypeCodeStr = "QGC|全国彩,DFC|地方彩,GPC11X5|11选5,GPCK3|快3,GPCKL12|快乐十二,GPCKLSF|快乐十分,GPCSSC|时时彩,GPCQTC|其他彩种";
#endregion
///
/// 走势图彩种大厅
///
/// Json字符串
public abstract string GetTrendChartList();
///
/// 获取走势图Html
///
/// 查询参数
///
public abstract string GetTrendChartHtml(QueryTrendChartArg arg);
}
}