PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Models/IOrderModel.cs
2023-05-19 03:39:58 +04:00

19 lines
466 B
C#

using CanteenDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Models
{
public interface IOrderModel : IId
{
int VisitorId { get; }
string Description { get; }
double? Sum { get; }
Dictionary<int, ICookModel> OrderCooks { get; }
Dictionary<int, (ITablewareModel, int)> OrderTablewares { get; }
}
}