using PolyclinicContracts.BindingModels; using PolyclinicContracts.SearchModels; using PolyclinicContracts.StoragesContracts; using PolyclinicContracts.ViewModels; namespace PolyclinicDatabaseImplement.Implements { public class CourseStorage : ICourseStorage { public CourseViewModel? Delete(CourseBindingModel model) { throw new NotImplementedException(); } public CourseViewModel? GetElement(CourseSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(CourseSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public CourseViewModel? Insert(CourseBindingModel model) { throw new NotImplementedException(); } public CourseViewModel? Update(CourseBindingModel model) { throw new NotImplementedException(); } } }