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 GetFilteredList(MealPlanSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public MealPlanViewModel? Insert(MealPlanBindingModel model) { throw new NotImplementedException(); } public MealPlanViewModel? Update(MealPlanBindingModel model) { throw new NotImplementedException(); } } }