Gets a blog post by its identity ID (int)

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual BlogPostEntity GetBlogPost(
	int id
)
Visual Basic
Public Overridable Function GetBlogPost ( 
	id As Integer
) As BlogPostEntity
Visual C++
public:
virtual BlogPostEntity^ GetBlogPost(
	int id
)
F#
abstract GetBlogPost : 
        id : int -> BlogPostEntity 
override GetBlogPost : 
        id : int -> BlogPostEntity 

Parameters

id
Type: System..::..Int32
Identity ID

Return Value

Type: BlogPostEntity
Blog post entity

Implements

IBlogBLL..::..GetBlogPost(Int32)

See Also