23 lines
628 B
C#
23 lines
628 B
C#
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();
|
|
}
|
|
}
|