Bamboo.Prevalence.Examples.UserLogin.UserLoginSystem.GetUser C# (CSharp) 메소드

GetUser() 개인적인 메소드

private GetUser ( string email ) : User
email string
리턴 User
		public User GetUser(string email)
		{
			User user = (User)_users[email];
			if (null == user)
			{
				throw new ApplicationException(string.Format("User {0} not found!", email));
			}
			return user;
		}
	}