Exemple #1
0
        public ActionResult Index()
        {
            ActionResult view = View("Error");

            IEnumerable <GroupNeedSummary> summary = UserNeedsManager.RetrieveGroupsOfNeed();

            if (null != summary)
            {
                view = View(summary);
            }

            return(view);
        }