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#
BlogEntity GetBlog(
	Guid id
)
Visual Basic
Function GetBlog ( 
	id As Guid
) As BlogEntity
Visual C++
BlogEntity^ GetBlog(
	Guid id
)
F#
abstract GetBlog : 
        id : Guid -> BlogEntity 

Parameters

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

Return Value

Type: BlogEntity
Blog entity.

See Also