Skip to content

Instantly share code, notes, and snippets.

@ns-github14
Created December 5, 2020 07:42
Show Gist options
  • Save ns-github14/a9c155574f0509a1af5738c05df6b949 to your computer and use it in GitHub Desktop.
Save ns-github14/a9c155574f0509a1af5738c05df6b949 to your computer and use it in GitHub Desktop.
public class Doctor_Class {
private String Name, Hospital, Location, Specialization, From_time, To_time, Gender;
private int Fees;
private Long Contact;
public Doctor_Class() {}
public String getName() {
return Name;
}
public String getGender() { return Gender; }
public String getHospital() {
return Hospital;
}
public String getSpecialization() {
return Specialization;
}
public String getLocation(){ return Location; }
public String getFrom_time() {
return From_time;
}
public String getTo_time() {
return To_time;
}
public int getFees() {
return Fees;
}
public Long getContact() {
return Contact;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment