Exemple #1
0
        public ActionResult Event(int?Status, string Desc, int?SSPorGrantee, int?Holder, string SchDateFrom,
                                  string SchDateTo, string CompDateFrom, string CompDateTo, int?TypeID, string CreDateFrom,
                                  string CreDateTo, string UpdDateFrom, string UpdDateTo, string FileName, string Author)
        {
            ReportsRepository rr           = new ReportsRepository();
            List <Project>    Projects_Key = rr.Events(Status, Desc, SSPorGrantee, Holder, SchDateFrom,
                                                       SchDateTo, CompDateFrom, CompDateTo, TypeID, CreDateFrom, CreDateTo, UpdDateFrom, UpdDateTo,
                                                       FileName, Author);

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