PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Models/ILunchModel.cs
2023-04-07 10:55:40 +04:00

20 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Models
{
public interface ILunchModel : IId
{
int Id { get; }
int VisitorId { get; }
string LunchName { get; }
double Cost { get; }
DateTime DateCreate { get; }
Dictionary<int, IProductModel> LunchProducts { get; }
Dictionary<int, IOrderModel> LunchOrders { get; }
}
}