ohctechv3/.svn/pristine/db/dbf5d31db991dfa902545f20b0bad313b28527d0.svn-base

19 lines
516 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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);
}