Skip to content

Commit

Permalink
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions SeatsioDotNet/Events/Events.cs
Original file line number Diff line number Diff line change
@@ -106,6 +106,11 @@ public ChangeObjectStatusResult Book(string[] eventKeys, IEnumerable<ObjectPrope
{
return ChangeObjectStatus(eventKeys, objects, ObjectStatus.Booked, holdToken, orderId);
}

public BestAvailableResult Book(string eventKey, BestAvailable bestAvailable, string holdToken = null, string orderId = null)
{
return ChangeObjectStatus(eventKey, bestAvailable, ObjectStatus.Booked, holdToken, orderId);
}

public ChangeObjectStatusResult Release(string eventKey, IEnumerable<string> objects, string holdToken = null, string orderId = null)
{
2 changes: 1 addition & 1 deletion SeatsioDotNet/SeatsioDotNet.csproj
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<Version>34</Version>
<Version>35</Version>
<Authors>mroloux;bverbeken</Authors>
<Title>Official Seats.io .NET API client</Title>
<Description>Official Seats.io .NET API client</Description>

0 comments on commit cf64fae

Please sign in to comment.