Example #1
0
        public UserProfileListDto GetUserProfile(string id, string profileStatus)
        {
            UserProfileListDto userProfile = _accountDal.GetUserProfile(id).FirstOrDefault();

            //DURUM KONTROLÜ
            if (profileStatus != null)
            {
                userProfile.ProfileStatus = profileStatus;
            }

            return(userProfile);
        }