C# 클래스 IS.Model.Repository.Cathedra.CathedraRepository

Интерфейс репозитория кафедр.
상속: ICathedraRepository
파일 보기 프로젝트 열기: dha01/IS 1 사용 예제들

공개 메소드들

메소드 설명
Create ( CathedraItem cathedra ) : int

Создает новую кафедру.

Delete ( int id ) : void

Удаляет кафедру.

Get ( int id ) : CathedraItem

Получает кафедру по идентификатору.

GetList ( ) : List

Получает список всех кафедр.

Update ( CathedraItem cathedra ) : void

Обновляет данные у кафедры.

메소드 상세

Create() 공개 메소드

Создает новую кафедру.
public Create ( CathedraItem cathedra ) : int
cathedra IS.Model.Item.Cathedra.CathedraItem Кафедра.
리턴 int

Delete() 공개 메소드

Удаляет кафедру.
public Delete ( int id ) : void
id int Идентификатор.
리턴 void

Get() 공개 메소드

Получает кафедру по идентификатору.
public Get ( int id ) : CathedraItem
id int Идентификатор.
리턴 IS.Model.Item.Cathedra.CathedraItem

GetList() 공개 메소드

Получает список всех кафедр.
public GetList ( ) : List
리턴 List

Update() 공개 메소드

Обновляет данные у кафедры.
public Update ( CathedraItem cathedra ) : void
cathedra IS.Model.Item.Cathedra.CathedraItem Кафедра.
리턴 void