Skip to content

Commit

Permalink
Build Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gagandeepp committed Oct 29, 2020
1 parent 219bc62 commit 92488f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vonage/Voice/VoiceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ public Task<CallResponse> CreateCallAsync(Endpoint toEndPoint, string fromNumber
);
}

public CallResponse IVoiceClient.CreateCall(string toNumber, string fromNumber, Ncco ncco)
public CallResponse CreateCall(string toNumber, string fromNumber, Ncco ncco)
{
return CreateCallAsync(toNumber,fromNumber,ncco).GetAwaiter().GetResult();
}

public CallResponse IVoiceClient.CreateCall(Endpoint toEndPoint, string fromNumber, Ncco ncco)
public CallResponse CreateCall(Endpoint toEndPoint, string fromNumber, Ncco ncco)
{
return CreateCallAsync(toEndPoint,fromNumber,ncco).GetAwaiter().GetResult();
}
Expand Down

0 comments on commit 92488f4

Please # to comment.