C# 클래스 Membership.Service.EmployeeMembershipService

상속: IEmployeeMembershipService
파일 보기 프로젝트 열기: serdarb/Membership-Service

공개 메소드들

메소드 설명
AddAddress ( AddressDto dto ) : bool
AddPhone ( PhoneDto dto ) : bool
AuthEmployee ( string userName, string password ) : bool
ChangePasswordForEmployee ( string email, string newPasswordHash ) : bool
CreateEmployee ( EmployeeDto dto ) : int
DeleteEmployee ( EmployeeDto dto ) : bool
GetEmployee ( string email ) : EmployeeDto
GetEmployeeById ( int id ) : EmployeeDto
GetEmployeeIdByEmailorUserName ( string emailorUserName ) : int
GetEmployees ( ) : List
IsPasswordResetRequestValid ( string email, string guid ) : bool
RequestPasswordResetForEmployee ( string email ) : bool

메소드 상세

AddAddress() 공개 메소드

public AddAddress ( AddressDto dto ) : bool
dto Membership.Contract.AddressDto
리턴 bool

AddPhone() 공개 메소드

public AddPhone ( PhoneDto dto ) : bool
dto Membership.Contract.PhoneDto
리턴 bool

AuthEmployee() 공개 메소드

public AuthEmployee ( string userName, string password ) : bool
userName string
password string
리턴 bool

ChangePasswordForEmployee() 공개 메소드

public ChangePasswordForEmployee ( string email, string newPasswordHash ) : bool
email string
newPasswordHash string
리턴 bool

CreateEmployee() 공개 메소드

public CreateEmployee ( EmployeeDto dto ) : int
dto Membership.Contract.EmployeeDto
리턴 int

DeleteEmployee() 공개 메소드

public DeleteEmployee ( EmployeeDto dto ) : bool
dto Membership.Contract.EmployeeDto
리턴 bool

GetEmployee() 공개 메소드

public GetEmployee ( string email ) : EmployeeDto
email string
리턴 Membership.Contract.EmployeeDto

GetEmployeeById() 공개 메소드

public GetEmployeeById ( int id ) : EmployeeDto
id int
리턴 Membership.Contract.EmployeeDto

GetEmployeeIdByEmailorUserName() 공개 메소드

public GetEmployeeIdByEmailorUserName ( string emailorUserName ) : int
emailorUserName string
리턴 int

GetEmployees() 공개 메소드

public GetEmployees ( ) : List
리턴 List

IsPasswordResetRequestValid() 공개 메소드

public IsPasswordResetRequestValid ( string email, string guid ) : bool
email string
guid string
리턴 bool

RequestPasswordResetForEmployee() 공개 메소드

public RequestPasswordResetForEmployee ( string email ) : bool
email string
리턴 bool