2024-02-14 20:09:14 +04:00
|
|
|
|
using SushiBarDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-02-14 21:06:58 +04:00
|
|
|
|
namespace SushiBarDataModels.Models
|
2024-02-14 20:09:14 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
2024-02-14 21:06:58 +04:00
|
|
|
|
int SushiId { get; }
|
2024-02-14 20:09:14 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|