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

            userProfileDetail = UserProfileAccessor.FindUserByUserID(userId);


            return(userProfileDetail);
        }