Skip to content

Commit

Permalink
BestellungWebRoutinen
Browse files Browse the repository at this point in the history
  • Loading branch information
ewu-nma committed Oct 10, 2023
1 parent c17264c commit 751e0ba
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Threading.Tasks;
using Gandalan.IDAS.Client.Contracts.Contracts;

namespace Gandalan.IDAS.WebApi.Client.BusinessRoutinen
{
public class BestellungWebRoutinen : WebRoutinenBase
{
public BestellungWebRoutinen(IWebApiConfig settings) : base(settings)
{
}

public async Task Bestellen(Guid bguid)
=> await PutAsync($"Bestellung/?bguid={bguid}", null);
}
}

0 comments on commit 751e0ba

Please sign in to comment.