using HospitalContracts.BindingModels; using HospitalContracts.SearchModels; using HospitalContracts.ViewModels; namespace HospitalContracts.BusinessLogicContracts { public interface IPatientLogic { List? ReadList(PatientSearchModel? model); PatientViewModel? ReadElement(PatientSearchModel model); bool Create(PatientBindingModel model); bool Update(PatientBindingModel model); bool Delete(PatientBindingModel model); } }