public List <AboutProfileModel> Get(int userId)
        {
            //http://localhost:57260/api/about?userid=1
            //return "value";
            List <AboutModel> aboutids = aboutManager.Get_AboutDefault_ByUserId(userId);

            return(aboutManager.Get_AboutProfile_ByUserId(aboutids, userId));
        }