22 lines
484 B
C#
Raw Permalink Normal View History

2024-02-24 21:32:11 +04:00
using DinerDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerDataModels.Models
{
public interface IOrderModel : IID
{
2024-05-05 18:00:10 +04:00
int SnackID { get; }
2024-02-24 21:32:11 +04:00
int Count { get; }
2024-05-15 16:26:13 +04:00
int ClientID { get; }
int? ImplementerID { get; }
double Sum { get; }
2024-02-24 21:32:11 +04:00
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}