Click or drag to resize

KitchenOrderDto Constructor (Guid, Int32, Nullable<Guid>, Guid, Nullable<Guid>, DateTime, Int32, Int32, IReadOnlyCollection<IKitchenOrderCookingItemDto>)

Initializes a new instance of the KitchenOrderDto class

Namespace:  Resto.Front.Api.Data.Kitchen
Assembly:  Resto.Front.Api.V7 (in Resto.Front.Api.V7.dll)
Syntax
C#
public KitchenOrderDto(
	Guid baseOrderId,
	int number,
	Guid? orderTypeId,
	Guid tableId,
	Guid? waiterId,
	DateTime orderOpenTime,
	int initialGuestsCount,
	int actualGuestsCount,
	IReadOnlyCollection<IKitchenOrderCookingItemDto> items
)

Parameters

baseOrderId
Type: System.Guid
number
Type: System.Int32
orderTypeId
Type: System.Nullable<Guid>
tableId
Type: System.Guid
waiterId
Type: System.Nullable<Guid>
orderOpenTime
Type: System.DateTime
initialGuestsCount
Type: System.Int32
actualGuestsCount
Type: System.Int32
items
Type: System.Collections.Generic.IReadOnlyCollection<IKitchenOrderCookingItemDto>
See Also