PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDatabaseImplement/Models/Lunch.cs

23 lines
628 B
C#
Raw Normal View History

2023-04-07 10:55:40 +04:00
using CanteenDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDatabaseImplement.Models
{
public class Lunch : ILunchModel
{
public string LunchName => throw new NotImplementedException();
public double Cost => throw new NotImplementedException();
public int VisitorId => throw new NotImplementedException();
public Dictionary<int, (IProductModel, int)> LunchProducts => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}