diff --git a/Gandalan.IDAS.WebApi.Client/BusinessRoutinen/BestellungWebRoutinen.cs b/Gandalan.IDAS.WebApi.Client/BusinessRoutinen/BestellungWebRoutinen.cs new file mode 100644 index 00000000..c9f9b1e3 --- /dev/null +++ b/Gandalan.IDAS.WebApi.Client/BusinessRoutinen/BestellungWebRoutinen.cs @@ -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); + } +}