| org.kuali.module.financial.service.ServiceBillingControlService
All known Subclasses: org.kuali.module.financial.service.impl.ServiceBillingControlServiceImpl,
ServiceBillingControlService | public interface ServiceBillingControlService (Code) | | This service interface defines methods that a ServiceBillingControlService implementation must provide.
|
Method Summary | |
public ServiceBillingControl[] | getAll() Retrieves all the ServiceBillingControls in the database. | public ServiceBillingControl | getByPrimaryId(String chartOfAccountsCode, String accountNumber) Retrieves the ServiceBillingControl by its composite primary key (all passed in as parameters).
Parameters: chartOfAccountsCode - Chart of accounts code used to perform lookup of ServiceBillingControl object. Parameters: accountNumber - Account number used to perform lookup of ServiceBillingControl object. |
getAll | public ServiceBillingControl[] getAll()(Code) | | Retrieves all the ServiceBillingControls in the database.
All the ServiceBillingControls in the database, or an empty array (not null) if there are none. |
getByPrimaryId | public ServiceBillingControl getByPrimaryId(String chartOfAccountsCode, String accountNumber)(Code) | | Retrieves the ServiceBillingControl by its composite primary key (all passed in as parameters).
Parameters: chartOfAccountsCode - Chart of accounts code used to perform lookup of ServiceBillingControl object. Parameters: accountNumber - Account number used to perform lookup of ServiceBillingControl object. A ServiceBillingControl object instance. Returns null if there is none with the given key. |
|
|