ohctechv3/.svn/pristine/99/990f7e6720c8d3fecde6480cb38f7dcb9256e756.svn-base

19 lines
590 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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<RuleEquation> getAllRuleEquations(Pageable pageable);
void addRuleEquation(RuleEquationDto ruleEquationDto, Long userId);
void updateRuleEquation(RuleEquationDto ruleEquationDto, Long userId);
void deleteRuleEquation(Long ruleEqId);
}