package net.sourceforge.fenixedu.domain.areaCode; import net.sourceforge.fenixedu.domain.Parish; import net.sourceforge.fenixedu.domain.RootDomainObject; public class AreaCode extends AreaCode_Base { public AreaCode() { super(); setRootDomainObject(RootDomainObject.getInstance()); } public AreaCode(String code, String areaCode, String subAreaCode, String description, Parish parish) { this(); setCode(code); setAreaCode(areaCode); setSubAreaCode(subAreaCode); setDescription(description); setParish(parish); } }