public T Get <T>(string key)
        {
            T obj = _redisCache.GetData <T>(key);

            return(obj);
        }