ADD file via upload

main
pm4c6ia2v 4 months ago
parent 9f2cb8c341
commit 491326a653

@ -0,0 +1,52 @@
package com.student.view;
import com.student.model.Student;
import java.util.List;
/**
*
*
*/
public interface StudentView {
/**
*
* @param student
*/
void displayStudent(Student student);
/**
*
* @param students
*/
void displayAllStudents(List<Student> students);
/**
*
* @param message
*/
void displayMessage(String message);
/**
* ID
* @return ID
*/
String getStudentIdInput();
/**
*
* @return
*/
Student getStudentInput();
/**
*
*/
void displayMenu();
/**
*
* @return
*/
int getMenuChoice();
}
Loading…
Cancel
Save