using HotelContracts.BindingModels; using HotelContracts.SearchModels; using HotelContracts.ViewModels; 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); } }