BExIS.Web.Shell.Areas.SAM.Controllers.GroupsController.Groups_Select C# (CSharp) Method

Groups_Select() private method

private Groups_Select ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Groups_Select()
        {
            SubjectManager subjectManager = new SubjectManager();
            List<GroupGridRowModel> groups = subjectManager.GetAllGroups().Select(g => GroupGridRowModel.Convert(g)).ToList();

            return View(new GridModel<GroupGridRowModel> { Data = groups });
        }