Saves a rating for a post

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

Syntax

C#
public virtual void SaveRating(
	Guid postId,
	int rating
)
Visual Basic
Public Overridable Sub SaveRating ( 
	postId As Guid,
	rating As Integer
)
Visual C++
public:
virtual void SaveRating(
	Guid postId, 
	int rating
)
F#
abstract SaveRating : 
        postId : Guid * 
        rating : int -> unit 
override SaveRating : 
        postId : Guid * 
        rating : int -> unit 

Parameters

postId
Type: System..::..Guid
Blog post id
rating
Type: System..::..Int32
Rating to save

Implements

IBlogBLL..::..SaveRating(Guid, Int32)

See Also