20 lines
485 B
C#
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; }
|
|
}
|
|
}
|