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(); } }