using PolyclinicContracts.BindingModels; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PolyclinicContracts.BusinessLogicsContracts { public interface IRecipeLogic { List? ReadList(RecipeSearchModel? model); RecipeView? ReadElement(RecipeSearchModel model); bool Create(RecipeBindingModel model); bool Update(RecipeBindingModel model); bool Delete(RecipeBindingModel model); } }