C# Класс JoanCEdwards.ExamLibrary.User

User Business Class
Показать файл Открыть проект

Открытые методы

Метод Описание
Exists ( string userName ) : bool

Existses the specified user name.

GetUser ( string email ) : UserProfile

Gets the user.

GetUsers ( string searchString ) : List
HashPassword ( string valueToHash ) : string

Hashes the password.

IsValid ( string userName, string password ) : bool

Determines whether the specified user and password is valid.

ResetPassword ( string userName ) : string

Resets the password.

Save ( UserProfile profile ) : UserProfile

Приватные методы

Метод Описание
CreateHash ( string valueToHash, string key ) : string

Creates the hash.

Описание методов

Exists() публичный статический Метод

Existses the specified user name.
public static Exists ( string userName ) : bool
userName string Name of the user.
Результат bool

GetUser() публичный статический Метод

Gets the user.
public static GetUser ( string email ) : UserProfile
email string The email.
Результат JoanCEdwards.DAO.UserProfile

GetUsers() публичный статический Метод

public static GetUsers ( string searchString ) : List
searchString string
Результат List

HashPassword() публичный статический Метод

Hashes the password.
public static HashPassword ( string valueToHash ) : string
valueToHash string The value to hash.
Результат string

IsValid() публичный статический Метод

Determines whether the specified user and password is valid.
public static IsValid ( string userName, string password ) : bool
userName string Name of the user.
password string The password.
Результат bool

ResetPassword() публичный статический Метод

Resets the password.
public static ResetPassword ( string userName ) : string
userName string Name of the user.
Результат string

Save() публичный статический Метод

public static Save ( UserProfile profile ) : UserProfile
profile JoanCEdwards.DAO.UserProfile
Результат JoanCEdwards.DAO.UserProfile