Exemple #1
0
        public async Task <ShortenUrl> GetShortenUrl(string code)
        {
            var parameters = new Dictionary <string, object>
            {
                { "Code", code },
            };

            return(await _sqlDataAccess.GetOne <ShortenUrl>("uspGetShortUrl", parameters));
        }