forked from Alpro-Kelompok-4/ticket-com
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47fbbf0
commit 1dbea00
Showing
6 changed files
with
161 additions
and
22 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/main/java/org/kelompok4/app/Controller/ReportController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package org.kelompok4.app.Controller; | ||
|
||
import org.kelompok4.app.Interface.ICanRead; | ||
import org.kelompok4.app.Model.BookingModel; | ||
import org.kelompok4.app.View.ReportView; | ||
|
||
public class ReportController implements ICanRead { | ||
private BookingModel bookingModel; | ||
//private TrainScheduleModel trainScheduleModel; | ||
private ReportView reportView; | ||
|
||
|
||
@Override | ||
public void read() { | ||
|
||
} | ||
|
||
|
||
|
||
//unsolid | ||
public void showDailyReport() { | ||
|
||
} | ||
|
||
public void showMonthlyReport() { | ||
|
||
} | ||
|
||
public void showAnnualReport() { | ||
|
||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/org/kelompok4/app/Interface/ICanManageReport.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.kelompok4.app.Interface; | ||
|
||
public interface ICanManageReport { | ||
|
||
void generate(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters