12 lines
357 B
C#
12 lines
357 B
C#
|
using HotelDataModels.Models;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Models
|
|||
|
{
|
|||
|
public class ConferenceBooking : IConferenceBookingModel
|
|||
|
{
|
|||
|
public int ConferenceId => throw new NotImplementedException();
|
|||
|
public int HeadwaiterId => throw new NotImplementedException();
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|