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

Gets the all the information of expense types used in the expense with expenseId.

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

Syntax

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

Parameters

groupId
Type: System..::.Int32
Unique Id of the group
expenseId
Type: System..::.Int32
Id of the expense for which all the expense types needs to be retrieved.

Return Value

Instance of the GroupExpenseTypeInfo object containing all the information related to expense types. GroupExpenseTypeInfo

See Also