Example #1
0
        public ActionResult <List <GroupsOfUser> > Get(string id)

        {
            var ent = _enterprise.GetGroups(id);

            if (ent == null)
            {
                return(NotFound());
            }
            return(ent);
        }