bug 7359: search for removed accounts also while composing usage records response

status 7359: resolved fixed
This commit is contained in:
kishan 2010-12-29 21:21:27 +05:30
parent 494a46a10f
commit c11b8612cd

View File

@ -304,6 +304,10 @@ public class ApiDBUtils {
public static Account findAccountById(Long accountId) {
return _accountDao.findById(accountId);
}
public static Account findAccountByIdIncludingRemoved(Long accountId) {
return _accountDao.findByIdIncludingRemoved(accountId);
}
public static Account findAccountByNameDomain(String accountName, Long domainId) {
return _accountDao.findActiveAccount(accountName, domainId);