C# 클래스 EducationsCourses.Repository.PersonRepository

상속: IPersonRepository
파일 보기 프로젝트 열기: rabbal/WPFEducation_Management 1 사용 예제들

공개 메소드들

메소드 설명
Delete ( Person person ) : void
Insert ( Model person ) : void
SearchPersonByName ( string name ) : List
SelectAllStates ( ) : List
SelectByID ( System.Guid id ) : Person
SelectCitiesByState ( int stateId ) : List
SelectPersons ( ) : List
Update ( System.Guid oldPersonID, Person newPerson ) : void

메소드 상세

Delete() 공개 메소드

public Delete ( Person person ) : void
person EducationsCourses.Model.Person
리턴 void

Insert() 공개 메소드

public Insert ( Model person ) : void
person Model
리턴 void

SearchPersonByName() 공개 메소드

public SearchPersonByName ( string name ) : List
name string
리턴 List

SelectAllStates() 공개 메소드

public SelectAllStates ( ) : List
리턴 List

SelectByID() 공개 메소드

public SelectByID ( System.Guid id ) : Person
id System.Guid
리턴 EducationsCourses.Model.Person

SelectCitiesByState() 공개 메소드

public SelectCitiesByState ( int stateId ) : List
stateId int
리턴 List

SelectPersons() 공개 메소드

public SelectPersons ( ) : List
리턴 List

Update() 공개 메소드

public Update ( System.Guid oldPersonID, Person newPerson ) : void
oldPersonID System.Guid
newPerson EducationsCourses.Model.Person
리턴 void