C# 클래스 LibiadaWeb.Models.Repositories.Catalogs.AttributeRepository

The attribute repository.
상속: IAttributeRepository
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-web 1 사용 예제들

공개 메소드들

메소드 설명
AttributeRepository ( ) : System

Initializes a new instance of the AttributeRepository class.

Dispose ( ) : void

The dispose.

GetAttributeByName ( string name ) : LibiadaWeb.Attribute

Gets attribute by name.

GetAttributeNameById ( int id ) : string

Gets attribute name by id.

메소드 상세

AttributeRepository() 공개 메소드

Initializes a new instance of the AttributeRepository class.
public AttributeRepository ( ) : System
리턴 System

Dispose() 공개 메소드

The dispose.
public Dispose ( ) : void
리턴 void

GetAttributeByName() 공개 메소드

Gets attribute by name.
/// Thrown if attribute with given name is not found. ///
public GetAttributeByName ( string name ) : LibiadaWeb.Attribute
name string /// The name. ///
리턴 LibiadaWeb.Attribute

GetAttributeNameById() 공개 메소드

Gets attribute name by id.
/// Thrown if attribute with given id is not found. ///
public GetAttributeNameById ( int id ) : string
id int /// The id. ///
리턴 string