C# 클래스 openTill.Persistence.EmployeeRepository

A class that actually performs the CRUD operations for an Employee.
상속: IEmployeeRepository
파일 보기 프로젝트 열기: CIT275DevGroup/openTill

공개 메소드들

메소드 설명
GetAll ( ) : IEnumerable

Returns all employees.

ValidateUser ( string userName, string password ) : bool

Validates an employee by confirming that the given password matches the password associated with the given username.

메소드 상세

GetAll() 공개 메소드

Returns all employees.
public GetAll ( ) : IEnumerable
리턴 IEnumerable

ValidateUser() 공개 메소드

Validates an employee by confirming that the given password matches the password associated with the given username.
public ValidateUser ( string userName, string password ) : bool
userName string String username
password string String password
리턴 bool