public async Task <ShortenUrl> GetShortenUrl(string code) { var parameters = new Dictionary <string, object> { { "Code", code }, }; return(await _sqlDataAccess.GetOne <ShortenUrl>("uspGetShortUrl", parameters)); }