Browse Source

Minor refactoring

pull/632/head
Unai Zorrilla Castro 6 years ago
parent
commit
654555387c
2 changed files with 2 additions and 8 deletions
  1. +0
    -1
      src/ApiGateways/Web.Bff.Shopping/aggregator/Startup.cs
  2. +2
    -7
      src/Web/WebMVC/Controllers/OrderController.cs

+ 0
- 1
src/ApiGateways/Web.Bff.Shopping/aggregator/Startup.cs View File

@ -16,7 +16,6 @@ using Swashbuckle.AspNetCore.Swagger;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IdentityModel.Tokens.Jwt; using System.IdentityModel.Tokens.Jwt;
using System.Net.Http;
namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator
{ {


+ 2
- 7
src/Web/WebMVC/Controllers/OrderController.cs View File

@ -1,14 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.eShopOnContainers.WebMVC.Services; using Microsoft.eShopOnContainers.WebMVC.Services;
using Microsoft.eShopOnContainers.WebMVC.ViewModels; using Microsoft.eShopOnContainers.WebMVC.ViewModels;
using Microsoft.AspNetCore.Authorization;
using System.Net.Http;
using Polly.CircuitBreaker; using Polly.CircuitBreaker;
using WebMVC.Models;
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.WebMVC.Controllers namespace Microsoft.eShopOnContainers.WebMVC.Controllers
{ {


Loading…
Cancel
Save