16 lines
424 B
C#
16 lines
424 B
C#
|
using HotelDataModels.Models;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Models
|
|||
|
{
|
|||
|
public class Conference : IConferenceModel
|
|||
|
{
|
|||
|
public string ConferenceName => throw new NotImplementedException();
|
|||
|
|
|||
|
public DateTime StartDate => throw new NotImplementedException();
|
|||
|
|
|||
|
public int OrganiserId => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|