CourseWork_Hotel/Hotel/HotelDataBaseImplement/Models/Dinner.cs

21 lines
529 B
C#
Raw Normal View History

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();
}
}