Fetches a blog entity using its id.

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

Syntax

C#
public virtual BlogEntity GetBlog(
	Guid id
)
Visual Basic
Public Overridable Function GetBlog ( 
	id As Guid
) As BlogEntity
Visual C++
public:
virtual BlogEntity^ GetBlog(
	Guid id
)
F#
abstract GetBlog : 
        id : Guid -> BlogEntity 
override GetBlog : 
        id : Guid -> BlogEntity 

Parameters

id
Type: System..::..Guid
Blog id.

Return Value

Type: BlogEntity
Blog entity.

Implements

IBlogBLL..::..GetBlog(Guid)

See Also