Ejemplo n.º 1
0
        public ActionResult GetRiskItemsForRisk(string id)
        {
            var service = new RiskItemService();

            return(Json(service.GetRiskItemsByRiskName(id), JsonRequestBehavior.AllowGet));
        }
Ejemplo n.º 2
0
        public ActionResult GetAllRiskItems()
        {
            var service = new RiskItemService();

            return(Json(service.GetAllRiskItems(), JsonRequestBehavior.AllowGet));
        }