package com.healthcare.ohctech.service; import com.healthcare.ohctech.dto.RuleEquationDto; import com.healthcare.ohctech.entity.RuleEquation; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; public interface RuleEquationService { RuleEquation getRuleEquationById(Long ruleEqId); Page getAllRuleEquations(Pageable pageable); void addRuleEquation(RuleEquationDto ruleEquationDto, Long userId); void updateRuleEquation(RuleEquationDto ruleEquationDto, Long userId); void deleteRuleEquation(Long ruleEqId); }