ohctechv3/.svn/pristine/8d/8dd80ea6e3a1559d3f57c5fef836bfd7abf37daa.svn-base
2024-10-28 15:03:36 +05:30

19 lines
566 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.ReferredByDto;
import com.healthcare.ohctech.entity.ReferredBy;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface ReferredByService {
ReferredBy getReferredById(Long referredById);
Page<ReferredBy> getAllReferredBys(Pageable pageable);
void addReferredBy(ReferredByDto referredByDto,Long userId);
void updateReferredBy(ReferredByDto referredByDto,Long userId);
void deleteReferredBy(Long referredById);
}