yeah stop

This commit is contained in:
Tommy Parnell
2019-04-06 06:35:09 -04:00
parent 747c36a87b
commit 675a0b7cd5
2 changed files with 8 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ namespace azure_functions_talk
ILogger log)
{
await Task.Delay(50);
return new OkObjectResult(new CompleteDounut() { Topping = GetTopping() });
return new OkObjectResult(new CompleteDounut() { Topping = GetTopping(), Id = req.Id, Done = req.Done });
}
}
}