public async Task RejectAsync( [Summary("The ID value of the campaign to be rejected.")] long campaignId) { await PromotionsService.RejectCampaignAsync(campaignId); await Context.AddConfirmation(); }
public Task Reject( [Summary("The ID value of the campaign to be rejected.")] long campaignId) => PromotionsService.RejectCampaignAsync(campaignId);