12 lines
300 B
Java
12 lines
300 B
Java
package com.ebrains.cruddemo.service;
|
|
|
|
import com.ebrains.cruddemo.entity.Student;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public interface StudentService {
|
|
Student getStudentById(long id);
|
|
void saveStudent(Student student);
|
|
void deleteStudentById(long id);
|
|
}
|