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 IServiceLogic { List? ReadList(ServiceSearchModel? model); ServiceViewModel? ReadElement(ServiceSearchModel model); bool Create(ServiceBindingModel model); bool Update(ServiceBindingModel model); bool Delete(ServiceBindingModel model); } }