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:
359 bytes
|
Rev | Line | |
---|
[fdfbdde] | 1 | package com.example.task.entity.projection;
|
---|
| 2 |
|
---|
| 3 | import java.time.LocalDate;
|
---|
| 4 | import java.time.LocalTime;
|
---|
| 5 |
|
---|
| 6 | public interface NonRepeatingClassEvent {
|
---|
| 7 | String getSubjectName();
|
---|
| 8 |
|
---|
| 9 | String getEventName();
|
---|
| 10 |
|
---|
| 11 | String getEventType();
|
---|
| 12 |
|
---|
| 13 | LocalDate getEventDate();
|
---|
| 14 |
|
---|
| 15 | LocalTime getEventStartTime();
|
---|
| 16 |
|
---|
| 17 | LocalTime getEventEndTime();
|
---|
| 18 |
|
---|
| 19 | Integer getEventId();
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.