ohctechv3/.svn/pristine/6a/6ac3f5f4469e9f1c290c0199541a28c91e5ef06a.svn-base
2024-10-28 15:03:36 +05:30

19 lines
674 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.BodyMeasurementMasterDto;
import com.healthcare.ohctech.entity.BodyMeasurementMaster;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface BodyMeasurementMasterService {
BodyMeasurementMaster getMeasurementById(Long measurementId);
Page<BodyMeasurementMaster> getAllMeasurements(Pageable pageable);
void addMeasurement(BodyMeasurementMasterDto bodyMeasurementMasterDto,Long userId);
void updateMeasurement(BodyMeasurementMasterDto bodyMeasurementMasterDto,Long userId);
void deleteMeasurement(Long measurementId);
}