16 lines
420 B
C#
16 lines
420 B
C#
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();
|
|
}
|
|
}
|