示例#1
0
        public IEnumerable <ShortUrl> GetAll()
        {
            _loggerservice.LogInformation("GetAll request called : ");
            var shorturls = _shortUrlRepository.List();

            return(_mapper.Map <IEnumerable <ShortUrl> >(shorturls));
        }