Example #1
0
        public UserProfile GetUserProfileByUserID(int userId)
        {
            // create a list to hold the returned data
            var userProfileDetail = new UserProfile();

            userProfileDetail = UserProfileAccessor.GetUserProfileByUserID(userId);


            return(userProfileDetail);
        }