Retrieve all blogs for a particular language and application instance.

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

Syntax

C#
public virtual EntityCollection<BlogEntity> GetBlogs(
	Nullable<Guid> languageId,
	Nullable<Guid> userId,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Public Overridable Function GetBlogs ( 
	languageId As Nullable(Of Guid),
	userId As Nullable(Of Guid),
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of BlogEntity)
Visual C++
public:
virtual EntityCollection<BlogEntity^>^ GetBlogs(
	Nullable<Guid> languageId, 
	Nullable<Guid> userId, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetBlogs : 
        languageId : Nullable<Guid> * 
        userId : Nullable<Guid> * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<BlogEntity> 
override GetBlogs : 
        languageId : Nullable<Guid> * 
        userId : Nullable<Guid> * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<BlogEntity> 

Parameters

languageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Language Id.
userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
pageNumber
Type: System..::..Int32
Page number.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Record count.

Return Value

Type: EntityCollection<(Of <(<'BlogEntity>)>)>
List of blogs for a particular user.

Implements

IBlogBLL..::..GetBlogs(Nullable<(Of <<'(Guid>)>>), Nullable<(Of <<'(Guid>)>>), Int32, Int32, Int32%)

See Also