コード例 #1
0
        public User Get(int id)
        {
            if (!Authenticate())
            {
                return(null);
            }

            User usr = context.Users.Find(id);

            usr.GetLinkedInformations();
            return(usr);
        }