EDMIAPI: Encapsulate Zooflow and Globix methods into their own classes
This commit is contained in:
@@ -765,7 +765,7 @@ Public Class frmGlobix_Index
|
||||
|
||||
Logger.Info("Running Import")
|
||||
|
||||
Dim oResult = Await My.Application.Service.Client.ImportFileAsync(
|
||||
Dim oResult = Await My.Application.Service.Client.Globix_ImportFileAsync(
|
||||
oFilePath, oProfileId, oAttributes, oObjectStore, oObjectKind, oBusinessEntity, oOptions)
|
||||
|
||||
Logger.Info("Import result: [{0}]", oResult.OK)
|
||||
|
||||
@@ -37,11 +37,11 @@ Public Class frmtest
|
||||
|
||||
|
||||
Private Async Sub btnImportFile_Click_(sender As Object, e As EventArgs) Handles btnImportFile.Click
|
||||
Dim oResponse As ImportFileResponse = Await My.Application.Service.Client.ImportFileAsync(
|
||||
Dim oResponse As ImportFileResponse = Await My.Application.Service.Client.Globix_ImportFileAsync(
|
||||
txtFile2Import.Text,
|
||||
txtProfileId.Text,
|
||||
New List(Of EDMIServiceReference.UserAttributeValue) From {
|
||||
New EDMIServiceReference.UserAttributeValue With {
|
||||
New List(Of UserAttributeValue) From {
|
||||
New UserAttributeValue With {
|
||||
.Name = "Attribut String1",
|
||||
.Values = New List(Of String) From {"SchreiberM"}.ToArray
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user