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

19 lines
516 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.DeviceDto;
import com.healthcare.ohctech.entity.DeviceMaster;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface DeviceMasterService {
DeviceMaster getDeviceById(Long id);
Page<DeviceMaster> getAllDevices(Pageable pageable);
void addDevice(DeviceDto deviceDto,Long userId);
void updateDevice(DeviceDto deviceDto,Long userId);
void deleteDevice(Long id);
}