1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Models;
- namespace Interface
- {
-
-
-
- public interface ITrendChart
- {
-
-
-
-
-
- List<DT_TrendChart> GetTrendChartConfig(int LotteryId);
-
-
-
-
-
- List<TrendChartItemInfo> GetTrendChartItem(List<int> TrendChartIds);
-
-
-
-
- List<ChartCssConfigInfo> GetChartCssConfigs();
-
-
-
-
-
-
- bool SaveTrendChartList(SCCLottery Lottery, List<TrendChartData> ChartDatas);
- }
- }
|