using MedicalDatabaseContracts; using MedicalDatabaseContracts.Models; using MedicalDatabaseContracts.SearchModels; using MedicalDatabaseContracts.ViewModels; using Microsoft.Extensions.Logging; namespace MedicalBusinessLogic.BusinessLogics { public class PatientLogic : ILogic { private readonly IStorage _patientStorage; private readonly ILogger _logger; public PatientLogic(IStorage patientStorage, ILogger logger) { _patientStorage = patientStorage; _logger = logger; } public bool Create(Patient model) { throw new NotImplementedException(); } public bool Delete(Patient model) { throw new NotImplementedException(); } public PatientViewModel? ReadElement(PatientSearchModel searchModel) { throw new NotImplementedException(); } public List? ReadList(PatientSearchModel? searchModel) { throw new NotImplementedException(); } public bool Update(Patient model) { throw new NotImplementedException(); } } }