[This is preliminary documentation and is subject to change.]

Gets a list of all the expense types defined for a particular expense identified by the expenseId.

Namespace:  OfficeClip.DBLayer.TE
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public ArrayList GetAllExpenseTypes(
	int groupId,
	int expenseId
)
Visual Basic (Declaration)
Public Function GetAllExpenseTypes ( _
	groupId As Integer, _
	expenseId As Integer _
) As ArrayList
Visual C++
public:
ArrayList^ GetAllExpenseTypes(
	int groupId, 
	int expenseId
)

Parameters

groupId
Type: System..::.Int32
The Unique Id of the group
expenseId
Type: System..::.Int32
Id of the expense.

Return Value

ArrayList of ExpenseTypeInfo objects containing all the information related to the all the expense types defined for a particular expense. ExpenseTypeInfo

See Also