Describes the course (cooking and serving sequence) of an order item.
Namespace: Resto.Front.Api.V3.Data.Orders
Assembly: Resto.Front.Api.V3 (in Resto.Front.Api.V3.dll) Version: 4.1.1236.1 (4.1.1236.1)
Syntax
C#
public enum OrderItemCourse
Members
Member name | Value | Description | |
---|---|---|---|
Vip | 0 | Order item should be cooked and served as soon as possible, this is highest priority. | |
First | 1 | Order item cooking should start immediately after service cheque printing, this is default priority. | |
Second | 2 | Order item cooking should start after second course serve cheque printing, items of this priority should be served after First. | |
Third | 3 | Order item cooking should start after third course serve cheque printing, items of this priority should be served after Second. | |
Fourth | 4 | Order item cooking should start after fourth course serve cheque printing, this is lowest priority. | |
Default | 1 | Order items has first course priority by default. |
See Also