public async Task <IActionResult> Delete(int id) { await _orderFacade.DeleteOrder(id); await _orderDbContext.SaveChangesAsync(); return(Ok()); }