예제 #1
0
파일: UserService.cs 프로젝트: lob94/Mad
        public UserProfile FindUserByEmail(string email)
        {
            UserProfile u = UserProfileDao.FindByEmail(email);

            return(u);
        }