C# Class IS.Model.Repository.Cathedra.CathedraRepository

Интерфейс репозитория кафедр.
Inheritance: ICathedraRepository
Mostra file Open project: dha01/IS Class Usage Examples

Public Methods

Method Description
Create ( CathedraItem cathedra ) : int

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

Delete ( int id ) : void

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

Get ( int id ) : CathedraItem

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

GetList ( ) : List

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

Update ( CathedraItem cathedra ) : void

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

Method Details

Create() public method

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

Delete() public method

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

Get() public method

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

GetList() public method

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

Update() public method

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