这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

998 B

LINGYUN.Abp.Saas.HttpApi.Client

SaaS HTTP API client module, providing HTTP client proxy implementation for tenant and edition management.

Features

  • HTTP Client Proxy
    • HTTP client implementation of ITenantAppService
    • HTTP client implementation of IEditionAppService

Usage

  1. Install Module
[DependsOn(typeof(AbpSaasHttpApiClientModule))]
public class YourModule : AbpModule
{
}
  1. Configure Remote Service
{
  "RemoteServices": {
    "Default": {
      "BaseUrl": "http://localhost:44388/"
    }
  }
}
  1. Inject and Use Services
public class YourService
{
    private readonly ITenantAppService _tenantAppService;
    private readonly IEditionAppService _editionAppService;

    public YourService(
        ITenantAppService tenantAppService,
        IEditionAppService editionAppService)
    {
        _tenantAppService = tenantAppService;
        _editionAppService = editionAppService;
    }
}

More

简体中文