C# Class Recast.WebApp.Models.Posts

ファイルを表示 Open project: giggio/Recast Class Usage Examples

Public Methods

Method Description
Delete ( string userName, string feedName, string title ) : void
Get ( string userName, string feedName, string title ) : Post
GetForFeed ( Feed feed ) : IEnumerable
Insert ( Post post ) : bool
Posts ( ) : System.Collections.Generic
Update ( Post post ) : void

Method Details

Delete() public method

public Delete ( string userName, string feedName, string title ) : void
userName string
feedName string
title string
return void

Get() public method

public Get ( string userName, string feedName, string title ) : Post
userName string
feedName string
title string
return Recast.WebApp.Models.Entities.Post

GetForFeed() public method

public GetForFeed ( Feed feed ) : IEnumerable
feed Recast.WebApp.Models.Entities.Feed
return IEnumerable

Insert() public method

public Insert ( Post post ) : bool
post Recast.WebApp.Models.Entities.Post
return bool

Posts() public method

public Posts ( ) : System.Collections.Generic
return System.Collections.Generic

Update() public method

public Update ( Post post ) : void
post Recast.WebApp.Models.Entities.Post
return void