ActivEarth.DataService.UserService.GetUser C# (CSharp) 메소드

GetUser() 공개 메소드

public GetUser ( string userName, string password ) : User
userName string
password string
리턴 ActivEarth.Objects.Profile.User
        public User GetUser(string userName, string password)
        {
            return UserDAO.GetUserFromUserNameAndPassword(userName, password);
        }