2023-01-31 12:54:51 +04:00
|
|
|
|
using ConfectioneryDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
2023-02-14 00:08:23 +04:00
|
|
|
|
int PastryId { get; }
|
2023-01-31 12:54:51 +04:00
|
|
|
|
|
2023-04-25 00:01:49 +04:00
|
|
|
|
int ClientId { get; }
|
|
|
|
|
|
2023-01-31 12:54:51 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|