PatientAddressModel.java 429 Bytes
package com.sw.laryngoscope.FHIR.model;

public class PatientAddressModel {
    private String city;
    private String state;
    private String country;

    public PatientAddressModel(String city,String state,String country){
        this.city = city;
        this.state = state;
        this.country = country;
    }

    public String getFullAddress(){
        return  city + " City" + "\n" + state + "," + country;
    }
}