Last change
on this file was fdfbdde, checked in by Stojilkova Sara <sara.stojilkova.students.finki.ukim.mk>, 9 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
350 bytes
|
Rev | Line | |
---|
[fdfbdde] | 1 | package com.example.task.entity.projection;
|
---|
| 2 |
|
---|
| 3 | import java.time.LocalDate;
|
---|
| 4 | import java.time.LocalTime;
|
---|
| 5 |
|
---|
| 6 |
|
---|
| 7 | public interface ExamEvent {
|
---|
| 8 | String getSubjectName();
|
---|
| 9 |
|
---|
| 10 | String getEventName();
|
---|
| 11 |
|
---|
| 12 | String getEventType();
|
---|
| 13 |
|
---|
| 14 | LocalDate getEventDate();
|
---|
| 15 |
|
---|
| 16 | LocalTime getEventStartTime();
|
---|
| 17 |
|
---|
| 18 | LocalTime getEventEndTime();
|
---|
| 19 |
|
---|
| 20 | Integer getEventId();
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.