using HospitalContracts.BindingModels; using HospitalContracts.SearchModels; using HospitalContracts.ViewModels; namespace HospitalContracts.BusinessLogicContracts { public interface IApothecaryLogic { List? ReadList(ApothecarySearchModel? model); ApothecaryViewModel? ReadElement(ApothecarySearchModel model); bool Create(ApothecaryBindingModel model); bool Update(ApothecaryBindingModel model); bool Delete(ApothecaryBindingModel model); } }