using PolyclinicContracts.BindingModels; using PolyclinicContracts.BusinessLogicsContracts; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; namespace PolyclinicBusinessLogic.BusinessLogics { public class RecipeLogic : IRecipeLogic { public bool Create(RecipeBindingModel model) { throw new NotImplementedException(); } public bool Delete(RecipeBindingModel model) { throw new NotImplementedException(); } public RecipeViewModel? ReadElement(RecipeSearchModel model) { throw new NotImplementedException(); } public List? ReadList(RecipeSearchModel? model) { throw new NotImplementedException(); } public bool Update(RecipeBindingModel model) { throw new NotImplementedException(); } } }