using (var svc = new AdministrationService.AdministrationClient())
{
var request = new AdministrationService.ManagementGroupRequestOfCardBulkLoadHistorySelect();
request.Token = "Token";
request.ManagementGroup = "Management group";
var cardBulkLoadHistorySelect = new AdministrationService.CardBulkLoadHistorySelect();
cardBulkLoadHistorySelect.BatchControlRSN = new Guid("0cd2b473-1f16-4882-a629-3e9e5120b5c3");;
cardBulkLoadHistorySelect.CardBulkLoadHistoryRSN = new Guid("7a887a3a-7a8a-465c-b674-b00c724d4c68");;
request.Value = cardBulkLoadHistorySelect;
AdministrationService.ResultOfCardBulkLoadHistory result = svc.SelectCardBulkLoadHistory(request);
if (result.FaultCode == 0)
{
}
else
{
throw new Exception(result.FaultDescription);
}
}