C# 클래스 PetShop.Services.CustomCode.ProfileManager

파일 보기 프로젝트 열기: netTiers/netTiers 1 사용 예제들

공개 메소드들

메소드 설명
CreateUser ( string username, bool isAnonymous ) : Profile

Creates a new user.

GetAnonymousUser ( ) : Profile

Gets the Anonymous user.

GetCurrentUser ( string username ) : Profile

Gets a user by the username.

메소드 상세

CreateUser() 공개 메소드

Creates a new user.
public CreateUser ( string username, bool isAnonymous ) : Profile
username string The username.
isAnonymous bool True if the the user anonymous.
리턴 PetShop.Business.Profile

GetAnonymousUser() 공개 메소드

Gets the Anonymous user.
public GetAnonymousUser ( ) : Profile
리턴 PetShop.Business.Profile

GetCurrentUser() 공개 메소드

Gets a user by the username.
public GetCurrentUser ( string username ) : Profile
username string the username.
리턴 PetShop.Business.Profile