Ejemplo n.º 1
0
        // Select all usernames that are linked to a familyID
        public ActionResult GetLinkedUsers(int fid)
        {
            ViewBag.familyID = fid;
            var uid = User.Identity.Name;

            return(View(_treeService.GetLinkList(uid, fid)));
        }