using PolyclinicContracts.BindingModels; using PolyclinicContracts.BusinessLogicsContracts; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; namespace PolyclinicBusinessLogic.BusinessLogics { public class CourseLogic : ICourseLogic { public bool Create(CourseBindingModel model) { throw new NotImplementedException(); } public bool Delete(CourseBindingModel model) { throw new NotImplementedException(); } public CourseViewModel? ReadElement(CourseSearchModel model) { throw new NotImplementedException(); } public List? ReadList(CourseSearchModel? model) { throw new NotImplementedException(); } public bool Update(CourseBindingModel model) { throw new NotImplementedException(); } } }