41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using HotelContracts.BindingModels;
|
|
using HotelContracts.SearchModels;
|
|
using HotelContracts.StoragesContracts;
|
|
using HotelContracts.ViewModels;
|
|
|
|
namespace HotelDataBaseImplement.Implemets
|
|
{
|
|
public class MealPlanStorage : IMealPlanStorage
|
|
{
|
|
public MealPlanViewModel? Delete(MealPlanBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public MealPlanViewModel? GetElement(MealPlanSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<MealPlanViewModel> GetFilteredList(MealPlanSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<MealPlanViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public MealPlanViewModel? Insert(MealPlanBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public MealPlanViewModel? Update(MealPlanBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|