OperationServiceExtensionsCreateBanquet Method (IOperationService, DateTime, IClient, IOrder, ICredentials) |
Creates reservation for planned event in future. Order's table will be marked as reserved to prevent collision with other events at the same time.
Namespace:
Resto.Front.Api.V4.Extensions
Assembly:
Resto.Front.Api.V4 (in Resto.Front.Api.V4.dll)
Syntax public static IReserve CreateBanquet(
this IOperationService operationService,
DateTime estimatedStartTime,
IClient client,
IOrder order,
ICredentials credentials
)
Parameters
- operationService
- Type: Resto.Front.Api.V4IOperationService
Operation service. - estimatedStartTime
- Type: SystemDateTime
Approximate date and time of planned event, used to divide different events and remind staff to prepare table and ingredients. - client
- Type: Resto.Front.Api.V4.Data.BrdIClient
Client who asked to reserve table for his event. - order
- Type: Resto.Front.Api.V4.Data.OrdersIOrder
Order used to form menu for coming event, specify serve sequence (via courses), prepay. - credentials
- Type: Resto.Front.Api.V4.Data.SecurityICredentials
Credentials of the user. Required to pass permission and some other checks, as well as execute personalized operations.
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