From 075dcd7780f8802f6d4fa24b4c4e47197d1f0f0d Mon Sep 17 00:00:00 2001 From: enisn Date: Tue, 12 Oct 2021 16:02:20 +0300 Subject: [PATCH] Update PaymentServiceHttpApiHostModule.cs --- .../PaymentServiceHttpApiHostModule.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/services/payment/src/EShopOnAbp.PaymentService.HttpApi.Host/PaymentServiceHttpApiHostModule.cs b/services/payment/src/EShopOnAbp.PaymentService.HttpApi.Host/PaymentServiceHttpApiHostModule.cs index 83fa9e83..530aa5c2 100644 --- a/services/payment/src/EShopOnAbp.PaymentService.HttpApi.Host/PaymentServiceHttpApiHostModule.cs +++ b/services/payment/src/EShopOnAbp.PaymentService.HttpApi.Host/PaymentServiceHttpApiHostModule.cs @@ -1,18 +1,17 @@ +using EShopOnAbp.PaymentService.DbMigrations; using EShopOnAbp.PaymentService.EntityFrameworkCore; +using EShopOnAbp.Shared.Hosting.AspNetCore; using EShopOnAbp.Shared.Hosting.Microservices; using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Cors; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; +using System; +using System.Collections.Generic; +using System.Linq; using Volo.Abp; -using Volo.Abp.EntityFrameworkCore.SqlServer; -using EShopOnAbp.Shared.Hosting.AspNetCore; using Volo.Abp.Modularity; using Volo.Abp.Threading; -using System.Collections.Generic; -using System; -using EShopOnAbp.PaymentService.DbMigrations; -using System.Linq; -using Microsoft.AspNetCore.Cors; namespace EShopOnAbp.PaymentService {