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 getAllMeasurements(Pageable pageable); void addMeasurement(BodyMeasurementMasterDto measurementDto); void updateMeasurement(BodyMeasurementMasterDto measurementDto); void deleteMeasurement(Long measurementId); }