C# Class PhotoGallery.Repositories.TagRepository

Datei anzeigen Open project: csell5/Demos Class Usage Examples

Public Methods

Method Description
DeleteTagsForPhoto ( int id ) : void
GetPhotoList ( string tagName ) : IList
GetPhotos ( string tagName ) : IList
GetSimilarTags ( string tagName ) : IList
GetSortedTagListByPhoto ( int id ) : IList
GetTag ( string tagName ) : dynamic
GetTagCount ( string tag ) : int
GetTagList ( ) : IList
GetTagListByPhoto ( int id ) : IList
InsertTag ( string tag ) : void
TagRepository ( ) : System

Method Details

DeleteTagsForPhoto() public method

public DeleteTagsForPhoto ( int id ) : void
id int
return void

GetPhotoList() public method

public GetPhotoList ( string tagName ) : IList
tagName string
return IList

GetPhotos() public method

public GetPhotos ( string tagName ) : IList
tagName string
return IList

GetSimilarTags() public method

public GetSimilarTags ( string tagName ) : IList
tagName string
return IList

GetSortedTagListByPhoto() public method

public GetSortedTagListByPhoto ( int id ) : IList
id int
return IList

GetTag() public method

public GetTag ( string tagName ) : dynamic
tagName string
return dynamic

GetTagCount() public method

public GetTagCount ( string tag ) : int
tag string
return int

GetTagList() public method

public GetTagList ( ) : IList
return IList

GetTagListByPhoto() public method

public GetTagListByPhoto ( int id ) : IList
id int
return IList

InsertTag() public method

public InsertTag ( string tag ) : void
tag string
return void

TagRepository() public method

public TagRepository ( ) : System
return System