15 lines
554 B
Plaintext
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);
|
|
}
|