C# 클래스 Blog.Services.Helpers.Rest.PostsRestResource

상속: IPostsRestResource
파일 보기 프로젝트 열기: jsnmgpnty/Blogness2.0

공개 메소드들

메소드 설명
AddPost ( Post post, string authenticationToken ) : Post
DeletePost ( int postId, string authenticationToken ) : bool
GetMorePopularPosts ( int postsCount, int skip ) : List
GetMorePostsByTag ( string tagName, int skip ) : List
GetMorePostsByUser ( int userId, int skip ) : List
GetMoreRecentPosts ( int postsCount, int skip ) : List
GetPopularPosts ( int postsCount ) : List
GetPost ( int postId ) : Post
GetPostsByCommunity ( int communityId, int threshold = 10, int skip = 10 ) : List
GetPostsByTag ( string tagName ) : List
GetPostsByUser ( int userId ) : List
GetRecentPosts ( int postsCount ) : List
GetRelatedPosts ( int postId ) : RelatedPosts
UpdatePost ( Post post, string authenticationToken ) : Post

메소드 상세

AddPost() 공개 메소드

public AddPost ( Post post, string authenticationToken ) : Post
post Blog.Common.Contracts.Post
authenticationToken string
리턴 Blog.Common.Contracts.Post

DeletePost() 공개 메소드

public DeletePost ( int postId, string authenticationToken ) : bool
postId int
authenticationToken string
리턴 bool

GetMorePopularPosts() 공개 메소드

public GetMorePopularPosts ( int postsCount, int skip ) : List
postsCount int
skip int
리턴 List

GetMorePostsByTag() 공개 메소드

public GetMorePostsByTag ( string tagName, int skip ) : List
tagName string
skip int
리턴 List

GetMorePostsByUser() 공개 메소드

public GetMorePostsByUser ( int userId, int skip ) : List
userId int
skip int
리턴 List

GetMoreRecentPosts() 공개 메소드

public GetMoreRecentPosts ( int postsCount, int skip ) : List
postsCount int
skip int
리턴 List

GetPopularPosts() 공개 메소드

public GetPopularPosts ( int postsCount ) : List
postsCount int
리턴 List

GetPost() 공개 메소드

public GetPost ( int postId ) : Post
postId int
리턴 Blog.Common.Contracts.Post

GetPostsByCommunity() 공개 메소드

public GetPostsByCommunity ( int communityId, int threshold = 10, int skip = 10 ) : List
communityId int
threshold int
skip int
리턴 List

GetPostsByTag() 공개 메소드

public GetPostsByTag ( string tagName ) : List
tagName string
리턴 List

GetPostsByUser() 공개 메소드

public GetPostsByUser ( int userId ) : List
userId int
리턴 List

GetRecentPosts() 공개 메소드

public GetRecentPosts ( int postsCount ) : List
postsCount int
리턴 List

GetRelatedPosts() 공개 메소드

public GetRelatedPosts ( int postId ) : RelatedPosts
postId int
리턴 Blog.Common.Contracts.ViewModels.RelatedPosts

UpdatePost() 공개 메소드

public UpdatePost ( Post post, string authenticationToken ) : Post
post Blog.Common.Contracts.Post
authenticationToken string
리턴 Blog.Common.Contracts.Post