C# Class PersonsService.PersonsService

Inheritance: IPersonsService
Mostra file Open project: Hill30/ResourceAllocation

Public Methods

Method Description
GetClient ( int id ) : Client
GetClientNotes ( int clientId, int count, int offset, string sortDirection ) : List
GetEmployee ( int id ) : Employee
GetEmployeeNotes ( int employeeId, int count, int offset, string sortDirection ) : List
Search ( string searchString, int count, int offset, string sortBy, string sortDirection ) : List

Method Details

GetClient() public method

public GetClient ( int id ) : Client
id int
return PersonsServiceModel.Client

GetClientNotes() public method

public GetClientNotes ( int clientId, int count, int offset, string sortDirection ) : List
clientId int
count int
offset int
sortDirection string
return List

GetEmployee() public method

public GetEmployee ( int id ) : Employee
id int
return PersonsServiceModel.Employee

GetEmployeeNotes() public method

public GetEmployeeNotes ( int employeeId, int count, int offset, string sortDirection ) : List
employeeId int
count int
offset int
sortDirection string
return List

Search() public method

public Search ( string searchString, int count, int offset, string sortBy, string sortDirection ) : List
searchString string
count int
offset int
sortBy string
sortDirection string
return List