ResellerCommissionHelperGetResellerCommissionSummary Method |
Gets the reseller commission summary.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static IList<ResellerCommissionSummary> GetResellerCommissionSummary(
Guid resellerId,
DateTime startDate,
DateTime endDate,
int[] statuses,
bool showSums
)
Public Shared Function GetResellerCommissionSummary (
resellerId As Guid,
startDate As DateTime,
endDate As DateTime,
statuses As Integer(),
showSums As Boolean
) As IList(Of ResellerCommissionSummary)
public:
static IList<ResellerCommissionSummary^>^ GetResellerCommissionSummary(
Guid resellerId,
DateTime startDate,
DateTime endDate,
array<int>^ statuses,
bool showSums
)
static member GetResellerCommissionSummary :
resellerId : Guid *
startDate : DateTime *
endDate : DateTime *
statuses : int[] *
showSums : bool -> IList<ResellerCommissionSummary>
Parameters
- resellerId
- Type: SystemGuid
The reseller identifier. - startDate
- Type: SystemDateTime
The start date. - endDate
- Type: SystemDateTime
The end date. - statuses
- Type: SystemInt32
The statuses. - showSums
- Type: SystemBoolean
if set to true [show sums].
Return Value
Type:
IListResellerCommissionSummary
List of reseller commissions grouped by reseller, status and currency.
See Also