public Response<?> addCoUserAccount(Map<String, Object> input) {
LOGGER.info("Begin addCoUserAccount...");
Response<String> response = new Response<String>();
UserAccount userAccount = new UserAccount();
String passwordUserAccount = EncryptDecryptUtil.randomString(8);
FamilyMembers member = familyDao.getFamilyMembers((Integer) input
.get(Constants.ID_FAMILY_MEMBERS));
userAccount.setFamilyMember(member);
userAccount.setMailUserAccount(member.getMailFamilyMember());
userAccount.setNameUserAccount(member.getFirstNameFamilyMember());
userAccount
.setSecondNameUserAccount(member.getSecondNameFamilyMember());
userAccount.setPasswordUserAccount(passwordUserAccount);
try {
userAccountDao.addUserAccount(userAccount);
response.setT(passwordUserAccount);
response.setCodeExcute(Constants.OK);