Creates new calendar in database.

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

Syntax

C#
CalendarEntity CreateCalendar(
	Guid ownerId,
	string name,
	string slug
)
Visual Basic
Function CreateCalendar ( 
	ownerId As Guid,
	name As String,
	slug As String
) As CalendarEntity
Visual C++
CalendarEntity^ CreateCalendar(
	Guid ownerId, 
	String^ name, 
	String^ slug
)
F#
abstract CreateCalendar : 
        ownerId : Guid * 
        name : string * 
        slug : string -> CalendarEntity 

Parameters

ownerId
Type: System..::..Guid
Calendar owner id.
name
Type: System..::..String
Calendar name.
slug
Type: System..::..String
Calendar slug.

Return Value

Type: CalendarEntity
New calendar entity.

See Also