public string Get(string id)
        {
            GetResourceResult getResourceResult = cloudinaryService.GetFile(id);

            return(getResourceResult.StatusCode == HttpStatusCode.OK
                ? getResourceResult.SecureUrl
                : null);
        }