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#
public virtual CalendarEntity CreateCalendar(
	Guid ownerId,
	string name,
	string slug
)
Visual Basic
Public Overridable Function CreateCalendar ( 
	ownerId As Guid,
	name As String,
	slug As String
) As CalendarEntity
Visual C++
public:
virtual CalendarEntity^ CreateCalendar(
	Guid ownerId, 
	String^ name, 
	String^ slug
)
F#
abstract CreateCalendar : 
        ownerId : Guid * 
        name : string * 
        slug : string -> CalendarEntity 
override 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.

Implements

ICalendarEventBLL..::..CreateCalendar(Guid, String, String)

See Also