Skip to content

Instantly share code, notes, and snippets.

@yusufcakal
Created October 3, 2017 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusufcakal/5b020b4cab8f412d68b5fa9bbda3221e to your computer and use it in GitHub Desktop.
Save yusufcakal/5b020b4cab8f412d68b5fa9bbda3221e to your computer and use it in GitHub Desktop.
Medium Post
public class Company {
private String name, phone, address;
public Company(String name, String phone, String address) {
this.name = name;
this.phone = phone;
this.address = address;
}
// getter and setter methods.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment