Click or drag to resize

EditSessionExtensionsCreateBanquet Method

Creates reservation for planned event in future. Table will be marked as reserved to prevent collision with other events at the same time.

Namespace: Resto.Front.Api.Extensions
Assembly: Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
public static INewReserveStub CreateBanquet(
	this IEditSession editSession,
	DateTime estimatedStartTime,
	string activityType,
	IClientStub client,
	ITable table,
	Guid externalId = default
)

Parameters

editSession  IEditSession
Order will be created within the specified session.
estimatedStartTime  DateTime
Approximate date and time of planned event, used to divide different events and remind staff to prepare table and ingredients.
activityType  String
Describes an activity of the reserve to be created as a plain text. Can be empty string.
client  IClientStub
Client who asked to reserve table for his event.
table  ITable
Specifies table to be reserved at some moment in future.
externalId  Guid  (Optional)
Identifier in the external system which can be used to match reserves in the Syrve and in the external system.

Return Value

INewReserveStub

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEditSession. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also