22 lines
484 B
C#
22 lines
484 B
C#
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
|
|
{
|
|
int SnackID { get; }
|
|
int Count { get; }
|
|
int ClientID { get; }
|
|
int? ImplementerID { get; }
|
|
double Sum { get; }
|
|
OrderStatus Status { get; }
|
|
DateTime DateCreate { get; }
|
|
DateTime? DateImplement { get; }
|
|
}
|
|
}
|