ohctechv3/.svn/pristine/d3/d3afd45492d555a40c4afcba2fa01a88ad0be742.svn-base

19 lines
618 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.RuleConditionDto;
import com.healthcare.ohctech.entity.RuleCondition;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface RuleConditionService {
RuleCondition getRuleConditionById(Long ruleConditionId);
Page<RuleCondition> getAllRuleConditions(Pageable pageable);
void addRuleCondition(RuleConditionDto ruleConditionDto, Long userId);
void updateRuleCondition(RuleConditionDto ruleConditionDto, Long userId);
void deleteRuleCondition(Long ruleConditionId);
}