Retrieves the newest blog post.

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

Syntax

C#
public virtual BlogPostEntity GetLatestBlogPost(
	Nullable<Guid> languageId
)
Visual Basic
Public Overridable Function GetLatestBlogPost ( 
	languageId As Nullable(Of Guid)
) As BlogPostEntity
Visual C++
public:
virtual BlogPostEntity^ GetLatestBlogPost(
	Nullable<Guid> languageId
)
F#
abstract GetLatestBlogPost : 
        languageId : Nullable<Guid> -> BlogPostEntity 
override GetLatestBlogPost : 
        languageId : Nullable<Guid> -> BlogPostEntity 

Parameters

languageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Language Id.

Return Value

Type: BlogPostEntity
The newest blog post entity

Implements

IBlogBLL..::..GetLatestBlogPost(Nullable<(Of <<'(Guid>)>>))

See Also