ohctechv3/.svn/pristine/57/5798f6115e7a77eeb0c3e4784d429d4e44b6a089.svn-base

21 lines
665 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.PatientDietPlanDto;
import com.healthcare.ohctech.entity.PatientDietPlan;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
public interface PatientDietPlanService {
List<PatientDietPlanDto> getPatientDietPlansByConsultationId(Long consultationId) ;
List<PatientDietPlanDto> getAllPatientDietPlans() ;
void addPatientDietPlan(PatientDietPlanDto planDto, Long userId);
void updatePatientDietPlan(Long consultationId, PatientDietPlanDto planDto, Long userId);
void deletePatientDietPlan(Long id);
}