Click or drag to resize

KitchenOrderDto(Guid, Int32, IOrderType, ITable, IUser, DateTime, Int32, Int32, IReadOnlyCollectionIKitchenOrderCookingItemDto) Constructor

Initializes a new instance of the KitchenOrderDto class

Namespace: Resto.Front.Api.Data.Kitchen
Assembly: Resto.Front.Api.V8 (in Resto.Front.Api.V8.dll)
Syntax
C#
public KitchenOrderDto(
	Guid baseOrderId,
	int number,
	IOrderType orderType,
	ITable table,
	IUser waiter,
	DateTime orderOpenTime,
	int initialGuestsCount,
	int actualGuestsCount,
	IReadOnlyCollection<IKitchenOrderCookingItemDto> items
)

Parameters

baseOrderId  Guid
 
number  Int32
 
orderType  IOrderType
 
table  ITable
 
waiter  IUser
 
orderOpenTime  DateTime
 
initialGuestsCount  Int32
 
actualGuestsCount  Int32
 
items  IReadOnlyCollectionIKitchenOrderCookingItemDto
 
See Also