Gets daily report discussion board topics.

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

Syntax

C#
public virtual EntityCollection<SnDiscussionTopicEntity> GetDailyReportTopics(
	List<Guid> boardIds,
	List<Guid> roleIds,
	IRelationPredicateBucket filter,
	int pageSize,
	int pageIndex,
	out int recordCount
)
Visual Basic
Public Overridable Function GetDailyReportTopics ( 
	boardIds As List(Of Guid),
	roleIds As List(Of Guid),
	filter As IRelationPredicateBucket,
	pageSize As Integer,
	pageIndex As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnDiscussionTopicEntity)
Visual C++
public:
virtual EntityCollection<SnDiscussionTopicEntity^>^ GetDailyReportTopics(
	List<Guid>^ boardIds, 
	List<Guid>^ roleIds, 
	IRelationPredicateBucket^ filter, 
	int pageSize, 
	int pageIndex, 
	[OutAttribute] int% recordCount
)
F#
abstract GetDailyReportTopics : 
        boardIds : List<Guid> * 
        roleIds : List<Guid> * 
        filter : IRelationPredicateBucket * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 
override GetDailyReportTopics : 
        boardIds : List<Guid> * 
        roleIds : List<Guid> * 
        filter : IRelationPredicateBucket * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 

Parameters

boardIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Board ids
roleIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Role ids
filter
Type: IRelationPredicateBucket
Filter bucket
pageSize
Type: System..::..Int32
Page size
pageIndex
Type: System..::..Int32
Page index
recordCount
Type: System..::..Int32%
Total number of elements

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionTopicEntity>)>)>
Collection of discussion board topic elements

Implements

IDiscussionBLL..::..GetDailyReportTopics(List<(Of <<'(Guid>)>>), List<(Of <<'(Guid>)>>), IRelationPredicateBucket, Int32, Int32, Int32%)

See Also