Creates new calendar event in memory.

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

Syntax

C#
CalendarEventEntity GetNewCalendarEvent(
	Guid authorId,
	Guid calendarId
)
Visual Basic
Function GetNewCalendarEvent ( 
	authorId As Guid,
	calendarId As Guid
) As CalendarEventEntity
Visual C++
CalendarEventEntity^ GetNewCalendarEvent(
	Guid authorId, 
	Guid calendarId
)
F#
abstract GetNewCalendarEvent : 
        authorId : Guid * 
        calendarId : Guid -> CalendarEventEntity 

Parameters

authorId
Type: System..::..Guid
Event author id.
calendarId
Type: System..::..Guid
Calendar id.

Return Value

Type: CalendarEventEntity
New instance of CalendarEvent entity.

See Also