/** * */ package net.combase.desktopcrm.domain; /** * @author till * */ public class Account extends AbstractCrmObject { public Account(String id, String title) { super(id, title); } @Override public String getCrmEntityType() { return "Accounts"; } }