Beispiel #1
0
        public ActionResult Indicator(int?basefrom, int?baseto, int?benchfrom, int?benchto,
                                      int?finalfrom, int?finalto, int?InCatLabelID, int?InLabelID)
        {
            ReportsRepository rr           = new ReportsRepository();
            List <Project>    Projects_Key = rr.Indicator(basefrom, baseto, benchfrom, benchto,
                                                          finalfrom, finalto, InCatLabelID, InLabelID);

            ViewData["result"] = Projects_Key;
            return(Indicator());
        }