ohctechv3/.svn/pristine/f5/f5fe859c16e4f4bbbf850f31cceb67e0f31e27ae.svn-base
2024-10-28 15:03:36 +05:30

15 lines
554 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.ReportMasterDto;
import com.healthcare.ohctech.entity.ReportMaster;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface ReportMasterService {
ReportMaster getReportById(Long reportId);
Page<ReportMaster> getAllReports(Pageable pageable);
void addReport(ReportMasterDto reportMasterDto,Long userId);
void updateReport(ReportMasterDto reportMasterDto,Long userId);
void deleteReport(Long reportId);
}