using HotelContracts.BindingModels; using HotelContracts.SearchModels; using HotelContracts.ViewModels; using HotelDataModels.Models; namespace HotelContracts.BusinessLogicsContracts { public interface IMealPlanLogic { List? ReadList(MealPlanSearchModel? model); MealPlanViewModel? ReadElement(MealPlanSearchModel? model); bool Create(MealPlanBindingModel model); bool Update(MealPlanBindingModel model); bool Delete(MealPlanBindingModel model); bool AddParticipantToMealPlan(MealPlanSearchModel model, IParticipantModel participant); } }