19 lines
475 B
C#
19 lines
475 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 ConferenceBooking : IConferenceBookingModel
|
|||
|
{
|
|||
|
public int HeadwaiterId => throw new NotImplementedException();
|
|||
|
|
|||
|
public int ConferenceId => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|