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

19 lines
482 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.CanteenDto;
import com.healthcare.ohctech.entity.Canteen;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface CanteenService {
Canteen getCanteenById(Long id);
Page<Canteen> getAllCanteens(Pageable pageable);
void addCanteen(CanteenDto canteenDto);
void updateCanteen(CanteenDto canteenDto);
void deleteCanteen(Long id);
}