public class CharlesBerlin extends MindgrubEmployee
{
public String getHistory()
{
return "I am a military brat who has lived all over the world, including Panama, Korea, and Germany";
}
public String getEducation()
{
return "I graduated from UMBC magna cum laude with a computer science degree";
}
public String getWorkExperience()
{
return "I work on both Iphone and Android apps";
}
public String getHobbies()
{
return "I love sports, I play golf, soccer, and basketball regularly"
}
public String getFavoriteSportsTeam()
{
return "New York Mets";
}
protected BoneStructure getBoneStructure()
{
return BoneStructure.PERFECT;
}
}