19 lines
590 B
Plaintext
19 lines
590 B
Plaintext
|
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);
|
||
|
}
|