コード例 #1
0
ファイル: ReportController.cs プロジェクト: zenit1/beame-lfe
        public ActionResult EventOwnerChartData(int periodSelectionKind)
        {
            var kind = periodSelectionKind.ToPeriodSelectionKind();

            var facts = _reportServices.GetOwnerEventStatsData(kind);

            return(Json(facts, JsonRequestBehavior.AllowGet));
        }