C# 클래스 Supplier.Infrastructure.Repository.SupplierRepository

상속: ISupplierRepository, IDao
파일 보기 프로젝트 열기: hahalixiaojing/ddd.sample

공개 메소드들

메소드 설명
Add ( Model item ) : void

插入数据

FindAll ( ) : IList
FindBy ( int key ) : Model.Supplier
FindByIds ( int supplierIds ) : IEnumerable
Remove ( Model item ) : void
RemoveAll ( ) : void
Select ( int pageSize, int pageIndex, int &totalRows ) : IEnumerable
Update ( Model item ) : void

메소드 상세

Add() 공개 메소드

插入数据
public Add ( Model item ) : void
item Model
리턴 void

FindAll() 공개 메소드

public FindAll ( ) : IList
리턴 IList

FindBy() 공개 메소드

public FindBy ( int key ) : Model.Supplier
key int
리턴 Model.Supplier

FindByIds() 공개 메소드

public FindByIds ( int supplierIds ) : IEnumerable
supplierIds int
리턴 IEnumerable

Remove() 공개 메소드

public Remove ( Model item ) : void
item Model
리턴 void

RemoveAll() 공개 메소드

public RemoveAll ( ) : void
리턴 void

Select() 공개 메소드

public Select ( int pageSize, int pageIndex, int &totalRows ) : IEnumerable
pageSize int
pageIndex int
totalRows int
리턴 IEnumerable

Update() 공개 메소드

public Update ( Model item ) : void
item Model
리턴 void