Inspiration

The need of quick mobile doctor appointment application

What it does

Locate medical clinic & specialist in local area, seek medical advice with personal medical record and check appointment wait list in specific clinic

How we built it

Android Studio

Challenges we ran into

Connect to Microsoft Azure sql database with Android Studio

Accomplishments that we're proud of

Basic interface implementation

What we learned

What's next for Rapidic

Built With

Share this project:

Updates

posted an update

public class Person { private String personID; // primary key private int age; private string gender; private String email; private String firstName; private String lastName; private String phoneNumber; private String localID; private String passportID; private string citizenship; //optional

}

public class Patient extends Person { private String patientID; // primary key private String address; private String dateOfBirth; // YYYYMMDD

}

public class Doctor extends Person { private String doctorID; // primary key private String field; // foreign key private String fieldName; private double fee; private double startingHour; private double endHour;

}

public class Record extends Patient { private double refNo; // primary key private String field; // foreign key private String comment; }

public class Clinic { private String patientID; // primary key private String address; private double fee; private double startingHour; private double endHour; private String website; // URL attached ?? }

Log in or sign up for Devpost to join the conversation.

posted an update

public class Person { private String id; private String name; private int phone; private String email; public String getId() {return id;} public Stirng getName() {return name;} public int getPhone() {return phone;} public String getEmail() {return email;} Person (String id, String name, int phone, String email) { self.id = id; self.name = name; self.phone = phone; self.email = email; }

} public class Patient extends Person {

} public class Doctor extends Doctor { private int field; private String fieldName; private int fee; private String openHour;

}

Log in or sign up for Devpost to join the conversation.