Browse Source

Close #44: Change RemoteServiceNames

pull/49/head
gdlcf88 6 years ago
parent
commit
bd423d68a3
  1. 2
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.HttpApi.Client/EShopBasketsHttpApiClientModule.cs
  2. 2
      modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi.Client/EasyAbp/EShop/Orders/EShopOrdersHttpApiClientModule.cs
  3. 2
      modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi.Client/EasyAbp/EShop/Payments/EShopPaymentsHttpApiClientModule.cs
  4. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi.Client/EasyAbp/EShop/Products/EShopProductsHttpApiClientModule.cs
  5. 2
      modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi.Client/EasyAbp/EShop/Stores/EShopStoresHttpApiClientModule.cs

2
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.HttpApi.Client/EShopBasketsHttpApiClientModule.cs

@ -9,7 +9,7 @@ namespace EasyAbp.EShop.Baskets
typeof(AbpHttpClientModule))]
public class EShopBasketsHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Baskets";
public const string RemoteServiceName = "EShopBaskets";
public override void ConfigureServices(ServiceConfigurationContext context)
{

2
modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi.Client/EasyAbp/EShop/Orders/EShopOrdersHttpApiClientModule.cs

@ -9,7 +9,7 @@ namespace EasyAbp.EShop.Orders
typeof(AbpHttpClientModule))]
public class EShopOrdersHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Orders";
public const string RemoteServiceName = "EShopOrders";
public override void ConfigureServices(ServiceConfigurationContext context)
{

2
modules/EasyAbp.EShop.Payments/src/EasyAbp.EShop.Payments.HttpApi.Client/EasyAbp/EShop/Payments/EShopPaymentsHttpApiClientModule.cs

@ -10,7 +10,7 @@ namespace EasyAbp.EShop.Payments
)]
public class EShopPaymentsHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Payments";
public const string RemoteServiceName = "EShopPayments";
public override void ConfigureServices(ServiceConfigurationContext context)
{

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi.Client/EasyAbp/EShop/Products/EShopProductsHttpApiClientModule.cs

@ -9,7 +9,7 @@ namespace EasyAbp.EShop.Products
typeof(AbpHttpClientModule))]
public class EShopProductsHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Products";
public const string RemoteServiceName = "EShopProducts";
public override void ConfigureServices(ServiceConfigurationContext context)
{

2
modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi.Client/EasyAbp/EShop/Stores/EShopStoresHttpApiClientModule.cs

@ -9,7 +9,7 @@ namespace EasyAbp.EShop.Stores
typeof(AbpHttpClientModule))]
public class EShopStoresHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Stores";
public const string RemoteServiceName = "EShopStores";
public override void ConfigureServices(ServiceConfigurationContext context)
{

Loading…
Cancel
Save