15 lines
544 B
C#

using HotelDataModels.Models;
namespace HotelDataBaseImplement.Models
{
public class Room : IRoomModel
{
public string RoomName => throw new NotImplementedException();
public string RoomFrame => throw new NotImplementedException();
public double RoomPrice => throw new NotImplementedException();
public int HeadwaiterId => throw new NotImplementedException();
public int MealPlanId => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}