Gets the rating score.

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

Syntax

C#
public virtual decimal GetRating(
	Guid parentEntityId,
	int parentEntityType,
	out int totalCount
)
Visual Basic
Public Overridable Function GetRating ( 
	parentEntityId As Guid,
	parentEntityType As Integer,
	<OutAttribute> ByRef totalCount As Integer
) As Decimal
Visual C++
public:
virtual Decimal GetRating(
	Guid parentEntityId, 
	int parentEntityType, 
	[OutAttribute] int% totalCount
)
F#
abstract GetRating : 
        parentEntityId : Guid * 
        parentEntityType : int * 
        totalCount : int byref -> decimal 
override GetRating : 
        parentEntityId : Guid * 
        parentEntityType : int * 
        totalCount : int byref -> decimal 

Parameters

parentEntityId
Type: System..::..Guid
Parent entity id
parentEntityType
Type: System..::..Int32
Parent entity type
totalCount
Type: System..::..Int32%
Total rating count

Return Value

Type: Decimal
Total rating score

Implements

IRatingBLL..::..GetRating(Guid, Int32, Int32%)

See Also