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 LunchProducts => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }