Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
303 changes: 83 additions & 220 deletions .idea/workspace.xml

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,12 @@
import com.apekshapms.model.Patient;
import com.apekshapms.services.PatientServices;
import com.apekshapms.ui.UIName;
import com.apekshapms.validation.AlertDialog;
import com.apekshapms.validation.ValidateSearchConsultant;
import com.apekshapms.validation.ValidateSearchRegisterDoctor;
import javafx.embed.swing.JFXPanel;
import com.apekshapms.validation.Patient_Registration.ValidateSearchConsultant;
import com.apekshapms.validation.Patient_Registration.ValidateSearchRegisterDoctor;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;

import java.net.URL;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public class NewPatientController implements Controller {

@Override
public void initialize(URL location, ResourceBundle resources) {
txtNic.setPrefColumnCount(10);
DOB.setPromptText("mm-dd-yyyy");
txtNic.setPromptText("xxxxxxxxxV/E");
txtTtile.setPromptText("Mr/Mrs/Miss");


patient = new Patient();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.apekshapms.validation;
package com.apekshapms.validation.Patient_Registration;

import java.sql.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.apekshapms.validation;
package com.apekshapms.validation.Patient_Registration;

import java.sql.*;

Expand Down