| 12345678910111213141516171819 |
- using Abp.Dependency;
- using VberZero.Configuration;
- using VberZero.DomainService.Url;
- namespace VberAdmin.Web.Url;
- public class WebUrlService : WebUrlServiceBase, IWebUrlService, ITransientDependency
- {
- public WebUrlService(
- IAppConfigurationAccessor configurationAccessor) :
- base(configurationAccessor)
- {
- }
- public override string WebSiteRootAddressFormatKey => "App:WebSiteRootAddress";
- public override string ServerRootAddressFormatKey => "App:WebSiteRootAddress";
- }
|