using PolyclinicContracts.BindingModels; using PolyclinicContracts.BusinessLogicsContracts; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; namespace PolyclinicBusinessLogic.BusinessLogics { public class MedicamentLogic : IMedicamentLogic { public bool Create(MedicamentBindingModel model) { throw new NotImplementedException(); } public bool Delete(MedicamentBindingModel model) { throw new NotImplementedException(); } public MedicamentViewModel? ReadElement(MedicamentSearchModel model) { throw new NotImplementedException(); } public List? ReadList(MedicamentSearchModel? model) { throw new NotImplementedException(); } public bool Update(MedicamentBindingModel model) { throw new NotImplementedException(); } } }