using PolyclinicContracts.BindingModels; using PolyclinicContracts.SearchModels; using PolyclinicContracts.StoragesContracts; using PolyclinicContracts.ViewModels; namespace PolyclinicDatabaseImplement.Implements { public class SymptomStorage : ISymptomStorage { public SymptomViewModel? Delete(SymptomBindingModel model) { throw new NotImplementedException(); } public SymptomViewModel? GetElement(SymptomSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(SymptomSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public SymptomViewModel? Insert(SymptomBindingModel model) { throw new NotImplementedException(); } public SymptomViewModel? Update(SymptomBindingModel model) { throw new NotImplementedException(); } } }