WebUrlService.cs 511 B

12345678910111213141516171819
  1. using Abp.Dependency;
  2. using VberZero.Configuration;
  3. using VberZero.DomainService.Url;
  4. namespace VberAdmin.Web.Url;
  5. public class WebUrlService : WebUrlServiceBase, IWebUrlService, ITransientDependency
  6. {
  7. public WebUrlService(
  8. IAppConfigurationAccessor configurationAccessor) :
  9. base(configurationAccessor)
  10. {
  11. }
  12. public override string WebSiteRootAddressFormatKey => "App:WebSiteRootAddress";
  13. public override string ServerRootAddressFormatKey => "App:WebSiteRootAddress";
  14. }