using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VeterinaryClinicContracts.BindingModels; using VeterinaryClinicContracts.SearchModels; using VeterinaryClinicContracts.ViewModels; namespace VeterinaryClinicContracts.BusinessLogicsContracts { public interface IMedicationLogic { List? ReadList(MedicationSearchModel? model); MedicationViewModel? ReadElement(MedicationSearchModel model); bool Create(MedicationBindingModel model); bool Update(MedicationBindingModel model); bool Delete(MedicationBindingModel model); } }