using HotelDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HotelDataBaseImplement.Models { public class Dinner : IDinnerModel { public string DinnerName => throw new NotImplementedException(); public double DinnetPrice => throw new NotImplementedException(); public int HeadwaiterId => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }