Ejemplo n.º 1
0
        public async Task <ShortUrlList> GetUrlList()
        {
            var result = await _urlSecuredService.GetUrlList();

            foreach (var item in result.UrlList)
            {
                item.ShortUrl.Replace(_configuration.GetSection("ActualDomain").Value, _configuration.GetSection("Domain").Value);
            }
            return(result);
        }
Ejemplo n.º 2
0
        public async Task <ShortUrlList> GetUrlList()
        {
            var result = await _urlSecuredService.GetUrlList();

            return(result);
        }