using BeautySalonContracts.BindingModels; using BeautySalonContracts.SearchModels; using BeautySalonContracts.ViewModels; namespace BeautySalonContracts.BusinessLogicsContracts { public interface IServiceLogic { List? ReadList(ServiceSearchModel? model); ServiceViewModel? ReadElement(ServiceSearchModel model); bool Create(ServiceBindingModel model); bool Update(ServiceBindingModel model); bool Delete(ServiceBindingModel model); } }