public interface VoiceOperAccountService
| Modifier and Type | Method and Description |
|---|---|
int |
voiceOperAccountDelete(int accountId)
Удаление аккаунта по его коду в БД.
|
VoiceOperAccount |
voiceOperAccountGet(int accountId)
Получение одного конкретного аккаунта по его коду в БД.
|
java.util.List<VoiceOperAccount> |
voiceOperAccountList(int contractId,
Period period)
Получение списка аккаунта с фильтрацией по договору.
|
int |
voiceOperAccountTypeDelete(int accountTypeId)
Удаление типа аккаунта по его коду в БД.
|
VoiceOperAccountType |
voiceOperAccountTypeGet(int accountTypeId)
Получение одного конкретного типа аккаунта по его коду в БД.
|
java.util.List<VoiceOperAccountType> |
voiceOperAccountTypeList()
Получение списка типов аккаунта
|
int |
voiceOperAccountTypeUpdate(VoiceOperAccountType accountType)
Добавление/изменение типа аккаунта.
|
int |
voiceOperAccountUpdate(VoiceOperAccount account)
Добавление/изменение аккаунта.
|
java.util.List<VoiceOperAccount> voiceOperAccountList(int contractId, Period period) throws ru.bitel.bgbilling.common.BGException
contractId - код договораru.bitel.bgbilling.common.BGExceptionVoiceOperAccount voiceOperAccountGet(int accountId) throws ru.bitel.bgbilling.common.BGException
accountId - код аккаунтаru.bitel.bgbilling.common.BGExceptionint voiceOperAccountUpdate(VoiceOperAccount account) throws ru.bitel.bgbilling.common.BGException
account - аккаунтru.bitel.bgbilling.common.BGExceptionint voiceOperAccountDelete(int accountId)
throws ru.bitel.bgbilling.common.BGException
accountId - код аккаунтаru.bitel.bgbilling.common.BGExceptionjava.util.List<VoiceOperAccountType> voiceOperAccountTypeList() throws ru.bitel.bgbilling.common.BGException
ru.bitel.bgbilling.common.BGExceptionVoiceOperAccountType voiceOperAccountTypeGet(int accountTypeId) throws ru.bitel.bgbilling.common.BGException
accountTypeId - код аккаунтаru.bitel.bgbilling.common.BGExceptionint voiceOperAccountTypeUpdate(VoiceOperAccountType accountType) throws ru.bitel.bgbilling.common.BGException
accountType - тип аккаунтаru.bitel.bgbilling.common.BGExceptionint voiceOperAccountTypeDelete(int accountTypeId)
throws ru.bitel.bgbilling.common.BGException
accountTypeId - код типа аккаунтаru.bitel.bgbilling.common.BGException