use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuCreateSector.
@FXML
private void mnuCreateSector(ActionEvent event) {
(new TabAccess()).setTabName("tabSector");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuLend.
@FXML
private void mnuLend(ActionEvent event) {
(new TabAccess()).setTabName("tabLend");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuDashboard.
// ///////////////// Menu Function ///////////////////////////
@FXML
private void mnuDashboard(ActionEvent event) {
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToDashboard(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuBankSettings.
@FXML
private void mnuBankSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuExpense.
@FXML
private void mnuExpense(ActionEvent event) {
(new TabAccess()).setTabName("tabExpense");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(DashboardStage);
}
Aggregations