C# Class LibiadaWeb.Models.Repositories.Catalogs.AttributeRepository

The attribute repository.
Inheritance: IAttributeRepository
Afficher le fichier Open project: intervals-mining-lab/libiada-web Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

AttributeRepository() public méthode

Initializes a new instance of the AttributeRepository class.
public AttributeRepository ( ) : System
Résultat System

Dispose() public méthode

The dispose.
public Dispose ( ) : void
Résultat void

GetAttributeByName() public méthode

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

GetAttributeNameById() public méthode

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