using HotelDataModels.Models; namespace HotelDataBaseImplement.Models { public class MealPlan : IMealPlanModel { public string MealPlanName => throw new NotImplementedException(); public double MealPlanPrice => throw new NotImplementedException(); public int OrganiserId => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }