package project;

public class Relationships {
	int id;
	String status;
	int firstRelationshipAge;
	int virgin;
	String longestRelationship;
	String sexualOrientation;
	String parentsStatus;
	String partnershipDuration;
	int children;
	int siblings;
	int health;
	int sexLife;
	int attractiveness;
	int happiness;
	String principles;
	String religion;
	
	public Relationships(){
		
	}
	

	public Relationships(int id, String status, int firstRelationshipAge, int virgin, String longestRelationship,
			String sexualOrientation, String parentsStatus, String partnershipDuration, int children, int siblings,
			int health, int sexLife, int attractiveness, int happiness, String principles, String religion) {
		
		this.id = id;
		this.status = status;
		this.firstRelationshipAge = firstRelationshipAge;
		this.virgin = virgin;
		this.longestRelationship = longestRelationship;
		this.sexualOrientation = sexualOrientation;
		this.parentsStatus = parentsStatus;
		this.partnershipDuration = partnershipDuration;
		this.children = children;
		this.siblings = siblings;
		this.health = health;
		this.sexLife = sexLife;
		this.attractiveness = attractiveness;
		this.happiness = happiness;
		this.principles = principles;
		this.religion = religion;
	}
	
	


	public int getId() {
		return id;
	}


	public void setId(int id) {
		this.id = id;
	}


	public String getStatus() {
		return status;
	}


	public void setStatus(String status) {
		this.status = status;
	}


	public int getFirstRelationshipAge() {
		return firstRelationshipAge;
	}


	public void setFirstRelationshipAge(int firstRelationshipAge) {
		this.firstRelationshipAge = firstRelationshipAge;
	}


	public int getVirgin() {
		return virgin;
	}


	public void setVirgin(int virgin) {
		this.virgin = virgin;
	}


	public String getLongestRelationship() {
		return longestRelationship;
	}


	public void setLongestRelationship(String longestRelationship) {
		this.longestRelationship = longestRelationship;
	}


	public String getSexualOrientation() {
		return sexualOrientation;
	}


	public void setSexualOrientation(String sexualOrientation) {
		this.sexualOrientation = sexualOrientation;
	}


	public String getParentsStatus() {
		return parentsStatus;
	}


	public void setParentsStatus(String parentsStatus) {
		this.parentsStatus = parentsStatus;
	}


	public String getPartnershipDuration() {
		return partnershipDuration;
	}


	public void setPartnershipDuration(String partnershipDuration) {
		this.partnershipDuration = partnershipDuration;
	}


	public int getChildren() {
		return children;
	}


	public void setChildren(int children) {
		this.children = children;
	}


	public int getSiblings() {
		return siblings;
	}


	public void setSiblings(int siblings) {
		this.siblings = siblings;
	}


	public int getHealth() {
		return health;
	}


	public void setHealth(int health) {
		this.health = health;
	}


	public int getSexLife() {
		return sexLife;
	}


	public void setSexLife(int sexLife) {
		this.sexLife = sexLife;
	}


	public int getAttractiveness() {
		return attractiveness;
	}


	public void setAttractiveness(int attractiveness) {
		this.attractiveness = attractiveness;
	}


	public int getHappiness() {
		return happiness;
	}


	public void setHappiness(int happiness) {
		this.happiness = happiness;
	}


	public String getPrinciples() {
		return principles;
	}


	public void setPrinciples(String principles) {
		this.principles = principles;
	}


	public String getReligion() {
		return religion;
	}


	public void setReligion(String religion) {
		this.religion = religion;
	}


}
