Add resource supply contract export by its guid
This commit is contained in:
@ -19,7 +19,7 @@ namespace Hcs.Client.Api.Request.Nsi
|
||||
RegistryNumber = registryNumber
|
||||
};
|
||||
|
||||
var result = await SendAndWaitResultAsync(request, async(asyncClient) =>
|
||||
var result = await SendAndWaitResultAsync(request, async asyncClient =>
|
||||
{
|
||||
var response = await asyncClient.exportDataProviderNsiItemAsync(CreateRequestHeader(), request);
|
||||
return response.AckRequest.Ack;
|
||||
|
||||
@ -5,7 +5,9 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Hcs.Service.Async.Nsi
|
||||
{
|
||||
#pragma warning disable IDE1006
|
||||
public partial class getStateResult : IGetStateResultMany { }
|
||||
#pragma warning restore IDE1006
|
||||
|
||||
public partial class NsiPortsTypeAsyncClient : IAsyncClient<RequestHeader>
|
||||
{
|
||||
@ -15,7 +17,9 @@ namespace Hcs.Service.Async.Nsi
|
||||
}
|
||||
}
|
||||
|
||||
#pragma warning disable IDE1006
|
||||
public partial class getStateResponse : IGetStateResponse
|
||||
#pragma warning restore IDE1006
|
||||
{
|
||||
public IGetStateResult GetStateResult => getStateResult;
|
||||
}
|
||||
@ -24,7 +28,9 @@ namespace Hcs.Service.Async.Nsi
|
||||
|
||||
public partial class ErrorMessageType : IErrorMessage { }
|
||||
|
||||
#pragma warning disable IDE1006
|
||||
public partial class getStateRequest : IGetStateRequest { }
|
||||
#pragma warning restore IDE1006
|
||||
}
|
||||
|
||||
namespace Hcs.Client.Api.Request.Nsi
|
||||
|
||||
Reference in New Issue
Block a user