コード例 #1
0
ファイル: Program.cs プロジェクト: powernick/CodeLib
        static void Main(string[] args)
        {
            // Utility.GetRecordCount();

            // Dictionary<String, List<List<PerformanceValue>>> ss = TempData.GetPValueOfOneCaseOneWatcher();

            SelectInfo sInfo = new SelectInfo();
            sInfo.AssemblyType = "";
            sInfo.Days = 10;

            DataService dService = new DataService(sInfo);

            Dictionary<CaseInfo, Dictionary<ChartInfo, Dictionary<String, List<PerformanceValue>>>> cData = dService.GetAllDatas();

            Console.ReadKey();
        }
コード例 #2
0
 public Dictionary<CaseInfo, Dictionary<ChartInfo, Dictionary<String, List<PerformanceValue>>>> GetChartData(SelectInfo selectInfo)
 {
     DataService ds = new DataService(selectInfo);
     return ds.GetAllDatas();
 }