using PolyclinicContracts.BindingModels; using PolyclinicContracts.BusinessLogicsContracts; using PolyclinicContracts.SearchModels; using PolyclinicContracts.ViewModels; namespace PolyclinicBusinessLogic.BusinessLogics { public class DiagnoseLogic : IDiagnoseLogic { public bool Create(DiagnoseBindingModel model) { throw new NotImplementedException(); } public bool Delete(DiagnoseBindingModel model) { throw new NotImplementedException(); } public DiagnoseViewModel? ReadElement(DiagnoseSearchModel model) { throw new NotImplementedException(); } public List? ReadList(DiagnoseSearchModel? model) { throw new NotImplementedException(); } public bool Update(DiagnoseBindingModel model) { throw new NotImplementedException(); } } }