C# Class BlogSharp.Core.Impl.Services.Post.PostService

Inheritance: IPostService
Afficher le fichier Open project: BlogSharp/Blogsharp

Méthodes publiques

Méthode Description
AddComment ( Feedback comment ) : void
AddPost ( Model post ) : void
GetPostByFriendlyTitle ( Blog blog, string friendlyTitle ) : Post
GetPostById ( Blog blog, int id ) : Post
GetPostsByBlog ( Blog blog ) : IList
GetPostsByBlogPaged ( Blog blog, int skip, int take ) : IList
GetPostsByTagPaged ( Blog blog, string friendlyTagName, int skip, int take ) : IList
PostService ( IPostRepository postRepository ) : System.Collections.Generic
RemoveComment ( Feedback comment ) : void
RemovePost ( Model post ) : void

Method Details

AddComment() public méthode

public AddComment ( Feedback comment ) : void
comment Feedback
Résultat void

AddPost() public méthode

public AddPost ( Model post ) : void
post Model
Résultat void

GetPostByFriendlyTitle() public méthode

public GetPostByFriendlyTitle ( Blog blog, string friendlyTitle ) : Post
blog Model.Blog
friendlyTitle string
Résultat Model.Post

GetPostById() public méthode

public GetPostById ( Blog blog, int id ) : Post
blog Model.Blog
id int
Résultat Model.Post

GetPostsByBlog() public méthode

public GetPostsByBlog ( Blog blog ) : IList
blog Model.Blog
Résultat IList

GetPostsByBlogPaged() public méthode

public GetPostsByBlogPaged ( Blog blog, int skip, int take ) : IList
blog Model.Blog
skip int
take int
Résultat IList

GetPostsByTagPaged() public méthode

public GetPostsByTagPaged ( Blog blog, string friendlyTagName, int skip, int take ) : IList
blog Model.Blog
friendlyTagName string
skip int
take int
Résultat IList

PostService() public méthode

public PostService ( IPostRepository postRepository ) : System.Collections.Generic
postRepository IPostRepository
Résultat System.Collections.Generic

RemoveComment() public méthode

public RemoveComment ( Feedback comment ) : void
comment Feedback
Résultat void

RemovePost() public méthode

public RemovePost ( Model post ) : void
post Model
Résultat void