25 lines
665 B
C#
25 lines
665 B
C#
using HotelDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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();
|
|
}
|
|
}
|