public async Task <ActionResult <string> > GetCacheValue(string key)
 {
     return(Ok(await _memoryCacheService.StringGetAsync <string>(key)));
 }