ISEbd-21_Khaliullov_R.A._Co.../Canteen/CanteenContracts/BindingModels/OrderBindingModel.cs
Руслан Халиуллов 0cf8214b3e 2 этап
2024-04-30 18:48:42 +04:00

25 lines
777 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using CanteenDataModels.Enums;
using CanteenDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.BindingModels
{
public class OrderBindingModel : IOrderModel
{
public int Id { get; set; }
public int ClientId { get; set; }
public int? CookId { get; set; }
public int DishId { get; set; }
public int DishCount { get; set; }
public double OrderPrice { get; set; }
public OrderStatus OrderStatus { get; set; } = OrderStatus.Неизвестен;
public PaymentStatus PaymentStatus { get; set; } = PaymentStatus.Неизвестно;
public DateTime DateCreate { get; set; } = DateTime.Now;
public DateTime? DateImplement { get; set; }
}
}