Click or drag to resize

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

Initializes a new instance of the KitchenOrderDto class

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

Parameters

baseOrderId  Guid
 
number  Int32
 
orderType  IOrderType
 
table  ITable
 
waiter  IUser
 
orderOpenTime  DateTime
 
initialGuestsCount  Int32
 
actualGuestsCount  Int32
 
cookingPriority  Int32
 
isTopCookingPriority  Boolean
 
externalNumber  String
 
tabName  String
 
originName  String
 
items  IReadOnlyCollectionIKitchenOrderCookingItemDto
 
See Also