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
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
- Install Module
[DependsOn(typeof(AbpSaasHttpApiClientModule))]
public class YourModule : AbpModule
{
}
- Configure Remote Service
{
"RemoteServices": {
"Default": {
"BaseUrl": "http://localhost:44388/"
}
}
}
- 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;
}
}