C# Class WebApiDemo.Models.TagRepository

Inheritance: ITagRepository
ファイルを表示 Open project: smichelotti/WebAPI-presentation

Public Methods

Method Description
AllIncluding ( ) : IQueryable
Delete ( int id ) : void
Dispose ( ) : void
Find ( int id ) : Tag
GetAll ( ) : List
InsertOrUpdate ( Tag tag ) : void
Save ( ) : void

Method Details

AllIncluding() public method

public AllIncluding ( ) : IQueryable
return IQueryable

Delete() public method

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

Dispose() public method

public Dispose ( ) : void
return void

Find() public method

public Find ( int id ) : Tag
id int
return Tag

GetAll() public method

public GetAll ( ) : List
return List

InsertOrUpdate() public method

public InsertOrUpdate ( Tag tag ) : void
tag Tag
return void

Save() public method

public Save ( ) : void
return void