using PolyclinicContracts.BindingModels; using PolyclinicContracts.BusinessLogicsContracts; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; namespace PolyclinicBusinessLogic.BusinessLogics { public class SymptomLogic : ISymptomLogic { public bool Create(SymptomBindingModel model) { throw new NotImplementedException(); } public bool Delete(SymptomBindingModel model) { throw new NotImplementedException(); } public SymptomViewModel? ReadElement(SymptomSearchModel model) { throw new NotImplementedException(); } public List? ReadList(SymptomSearchModel? model) { throw new NotImplementedException(); } public bool Update(SymptomBindingModel model) { throw new NotImplementedException(); } } }