ohctechv3/.svn/pristine/22/22529b0c49fb9d6fdd8a9e795fb7ed176a499cd4.svn-base
2024-10-28 15:03:36 +05:30

23 lines
570 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.OhcDto;
import com.healthcare.ohctech.entity.OhcType;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.domain.Specification;
import java.util.List;
public interface OhcService {
public OhcType getOhcById(Integer ohcId);
public Page<OhcType> getAllOhc(Pageable pageable);
public void addOhc(OhcDto ohcDto);
public OhcType updateOhc(OhcDto ohcDto);
public void deleteOhc(Integer ohcId);
}