OperationServiceExtensions.CreateBanquet Method (IOperationService, DateTime, String, IClient, IReadOnlyList<ITable>, ICredentials, Guid) |
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.V8 (in Resto.Front.Api.V8.dll)
Syntaxpublic static IReserve CreateBanquet(
this IOperationService operationService,
DateTime estimatedStartTime,
string activityType,
IClient client,
IReadOnlyList<ITable> tables,
ICredentials credentials,
Guid externalId = default
)
Parameters
- operationService
- Type: Resto.Front.Api.IOperationService
Operation service. - estimatedStartTime
- Type: System.DateTime
Approximate date and time of planned event, used to divide different events and remind staff to prepare table and ingredients. - activityType
- Type: System.String
Describes an activity of the reserve to be created as a plain text. Can be empty string. Maximum length is 160 chars. - client
- Type: Resto.Front.Api.Data.Brd.IClient
Client who asked to reserve table for his event. - tables
- Type: System.Collections.Generic.IReadOnlyList<ITable>
Specifies tables to be reserved at some moment in future. - credentials
- Type: Resto.Front.Api.Data.Security.ICredentials
Credentials of the user. Required to pass permission and some other checks, as well as execute personalized operations. - externalId (Optional)
- Type: System.Guid
Identifier in the external system which can be used to match reserves in the iiko and in the external system.
Return Value
Type:
IReserveUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IOperationService. 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